mirror of
https://github.com/boostorg/ublas.git
synced 2026-02-20 15:12:16 +00:00
fix adaptor::operator= bad definition
[SVN r25302]
This commit is contained in:
@@ -1355,7 +1355,7 @@ namespace boost { namespace numeric { namespace ublas {
|
||||
// Assignment
|
||||
BOOST_UBLAS_INLINE
|
||||
hermitian_adaptor &operator = (const hermitian_adaptor &m) {
|
||||
matrix_assign (scalar_assign<BOOST_UBLAS_TYPENAME iterator1_type::reference, value_type> (), *this, m, functor_type ());
|
||||
matrix_assign (scalar_assign<BOOST_UBLAS_TYPENAME iterator1_type::reference, value_type> (), functor_type (), *this, m);
|
||||
return *this;
|
||||
}
|
||||
BOOST_UBLAS_INLINE
|
||||
@@ -1597,7 +1597,7 @@ namespace boost { namespace numeric { namespace ublas {
|
||||
(current_ == 0 && it1_ != it1_end_) ||
|
||||
(current_ == 1 && it2_ != it2_end_), internal_logic ());
|
||||
}
|
||||
// FIXME cannot compiler
|
||||
// FIXME cannot compile
|
||||
// iterator1 does not have these members!
|
||||
BOOST_UBLAS_INLINE
|
||||
const_iterator1 (const iterator1 &it):
|
||||
|
||||
Reference in New Issue
Block a user