2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-21 03:22:14 +00:00
svn path=/trunk/boost/boost/numeric/ublas/; revision=24938
This commit is contained in:
Michael Stevens
2004-09-06 12:41:19 +00:00
parent 7a9becb57f
commit f50427fa40

View File

@@ -243,13 +243,14 @@ namespace boost { namespace numeric { namespace ublas {
// Default map type is simply forwarded to std::map
// FIXME should use ALLOC for map but std::pair<const I, T> fails
// FIXME should use ALLOC for map but std::pair<const I, T> and std::pair<I,T> fail
template<class I, class T, class ALLOC>
class map_std : public std::map<I, T> {
class map_std : public std::map<I, T /*, ALLOC */> {
};
// Map array
// Implementation requires pair<I, T> allocator definition (without const)
template<class I, class T, class ALLOC>
class map_array {
public: