2
0
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:
Michael Stevens
2004-08-26 15:45:43 +00:00
parent cf1b9fe588
commit 63788a6dd2
2 changed files with 0 additions and 26 deletions

View File

@@ -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

View File

@@ -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