2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-20 15:12:16 +00:00

indirect_arrau use array_type for size_type etc

[SVN r24924]
This commit is contained in:
Michael Stevens
2004-09-05 12:28:24 +00:00
parent 61bd5b713f
commit 71ed2ba25b

View File

@@ -18,7 +18,6 @@
#define BOOST_UBLAS_STORAGE_H
#include <algorithm>
#include <vector>
#ifdef BOOST_UBLAS_SHALLOW_ARRAY_ADAPTOR
#include <boost/shared_array.hpp>
@@ -1389,8 +1388,8 @@ namespace boost { namespace numeric { namespace ublas {
public:
typedef A array_type;
typedef const A const_array_type;
typedef std::size_t size_type;
typedef std::ptrdiff_t difference_type;
typedef typename A::size_type size_type;
typedef typename A::difference_type difference_type;
typedef typename A::value_type value_type;
typedef typename A::const_reference const_reference;
typedef typename A::reference reference;