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

indirect_arrau use array_type for size_type etc

svn path=/trunk/boost/boost/numeric/ublas/; revision=24924
This commit is contained in:
Michael Stevens
2004-09-05 12:28:24 +00:00
parent abf5733f3f
commit e73205482a

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;