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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user