2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-22 15:52:18 +00:00

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

This commit is contained in:
Michael Stevens
2005-07-17 07:17:43 +00:00
parent ca293ba047
commit 96b4e49fa0

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