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

fix broken commit without typename

svn path=/trunk/boost/boost/numeric/ublas/; revision=25282
This commit is contained in:
Michael Stevens
2004-09-20 14:58:18 +00:00
parent 4f295242b4
commit 4195107061

View File

@@ -1661,8 +1661,8 @@ namespace boost { namespace numeric { namespace ublas {
typedef typename V1::value_type value1_type;
typedef typename V2::value_type value2_type;
typedef V1::size_type size_type;
typedef V1::difference_type difference_type;
typedef typename V1::size_type size_type;
typedef typename V1::difference_type difference_type;
typedef index_pair<self_type> value_type;
// There is nothing that can be referenced directly. Always return a copy of the index_pair
typedef value_type reference;
@@ -1847,8 +1847,8 @@ namespace boost { namespace numeric { namespace ublas {
typedef typename V2::value_type value2_type;
typedef typename V3::value_type value3_type;
typedef V1::size_type size_type;
typedef V1::difference_type difference_type;
typedef typename V1::size_type size_type;
typedef typename V1::difference_type difference_type;
typedef index_triple<self_type> value_type;
// There is nothing that can be referenced directly. Always return a copy of the index_triple
typedef value_type reference;