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

FIX only in conditional compiled BOOST_UBLAS_ENABLE_PROXY_SHORTCUTS. Will not compile due to additional const

svn path=/trunk/boost/boost/numeric/ublas/; revision=30141
This commit is contained in:
Michael Stevens
2005-07-17 07:17:43 +00:00
parent 0992b79849
commit 7a79cc348d

View File

@@ -376,7 +376,7 @@ namespace boost { namespace numeric { namespace ublas {
template<class A>
BOOST_UBLAS_INLINE
const matrix_indirect<const E, A> operator () (const indirect_array<A> &ia1, const indirect_array<A> &ia2) const {
return const matrix_indirect<const E, A> (operator () (), ia1, ia2);
return matrix_indirect<const E, A> (operator () (), ia1, ia2);
}
template<class A>
BOOST_UBLAS_INLINE