2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-21 03:22:14 +00:00
[SVN r24938]
This commit is contained in:
Michael Stevens
2004-09-06 12:41:19 +00:00
parent b67f5a22e8
commit a42aec0cb9

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: