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:
@@ -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 {};
|
||||
|
||||
Reference in New Issue
Block a user