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

VC6 workaround for private data_

[SVN r24474]
This commit is contained in:
Michael Stevens
2004-08-14 18:40:18 +00:00
parent 78047d1d7e
commit 3c57cc1344

View File

@@ -1053,7 +1053,10 @@ return true;
return reverse_iterator (begin ());
}
#if defined(BOOST_MSVC) && (BOOST_MSVC <= 1300)
// VC++ 6.0 cannot access data_ from iterator
private:
#endif
vector_closure_type data_;
slice s_;
static vector_type nil_;
@@ -1595,7 +1598,10 @@ return true;
return reverse_iterator (begin ());
}
#if defined(BOOST_MSVC) && (BOOST_MSVC <= 1300)
// VC++ 6.0 cannot access data_ from iterator
private:
#endif
vector_closure_type data_;
indirect_array_type ia_;
static vector_type nil_;