mirror of
https://github.com/boostorg/ublas.git
synced 2026-02-19 14:52:17 +00:00
resize not used. It just adds more mutable requirements
[SVN r24762]
This commit is contained in:
@@ -412,19 +412,6 @@ namespace boost { namespace numeric { namespace ublas {
|
||||
return e_;
|
||||
}
|
||||
|
||||
// Resizing
|
||||
#ifndef BOOST_UBLAS_REFERENCE_CONST_MEMBER
|
||||
BOOST_UBLAS_INLINE
|
||||
void resize (size_type size1, size_type size2) {
|
||||
expression ().resize (size1, size2);
|
||||
}
|
||||
#else
|
||||
BOOST_UBLAS_INLINE
|
||||
void resize (size_type size1, size_type size2) const {
|
||||
expression ().resize (size1, size2);
|
||||
}
|
||||
#endif
|
||||
|
||||
// Element access
|
||||
#ifndef BOOST_UBLAS_REFERENCE_CONST_MEMBER
|
||||
BOOST_UBLAS_INLINE
|
||||
|
||||
@@ -351,19 +351,6 @@ namespace boost { namespace numeric { namespace ublas {
|
||||
return e_;
|
||||
}
|
||||
|
||||
// Resizing
|
||||
#ifndef BOOST_UBLAS_REFERENCE_CONST_MEMBER
|
||||
BOOST_UBLAS_INLINE
|
||||
void resize (size_type size) {
|
||||
expression ().resize (size);
|
||||
}
|
||||
#else
|
||||
BOOST_UBLAS_INLINE
|
||||
void resize (size_type size) const {
|
||||
expression ().resize (size);
|
||||
}
|
||||
#endif
|
||||
|
||||
// Element access
|
||||
#ifndef BOOST_UBLAS_REFERENCE_CONST_MEMBER
|
||||
BOOST_UBLAS_INLINE
|
||||
|
||||
Reference in New Issue
Block a user