2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-21 03:22:14 +00:00

sparse storage with allocators

svn path=/trunk/boost/boost/numeric/ublas/; revision=24920
This commit is contained in:
Michael Stevens
2004-09-05 12:22:59 +00:00
parent 583e81c361
commit 377d54d5e4

View File

@@ -50,9 +50,9 @@ namespace boost { namespace numeric { namespace ublas {
template<class A = unbounded_array<std::size_t> >
class indirect_array;
template<class I, class T, class ALLOC = std::allocator<T> >
template<class I, class T, class ALLOC = std::allocator<std::pair<const I, T> > >
class map_std;
template<class I, class T, class ALLOC = std::allocator<T> >
template<class I, class T, class ALLOC = std::allocator<std::pair<const I, T> > >
class map_array;
struct vector_tag {};