|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r61868 - branches/release/boost/numeric/ublas
From: dgregor_at_[hidden]
Date: 2010-05-08 21:40:24
Author: dgregor
Date: 2010-05-08 21:40:22 EDT (Sat, 08 May 2010)
New Revision: 61868
URL: http://svn.boost.org/trac/boost/changeset/61868
Log:
Merge standards-conformance fixes for Ublas
Text files modified:
branches/release/boost/numeric/ublas/functional.hpp | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
Modified: branches/release/boost/numeric/ublas/functional.hpp
==============================================================================
--- branches/release/boost/numeric/ublas/functional.hpp (original)
+++ branches/release/boost/numeric/ublas/functional.hpp 2010-05-08 21:40:22 EDT (Sat, 08 May 2010)
@@ -2016,25 +2016,25 @@
static
BOOST_UBLAS_INLINE
size_type restrict1 (size_type i, size_type j, size_type size1, size_type size2) {
- return mutable_restrict1(i, j, size1, size2);
+ return basic_unit_lower<Z>::mutable_restrict1(i, j, size1, size2);
}
static
BOOST_UBLAS_INLINE
size_type restrict2 (size_type i, size_type j, size_type size1, size_type size2) {
- return mutable_restrict2(i, j, size1, size2);
+ return basic_unit_lower<Z>::mutable_restrict2(i, j, size1, size2);
}
// return an index between the first and (1+last) filled row
static
BOOST_UBLAS_INLINE
size_type global_restrict1 (size_type index1, size_type size1, size_type index2, size_type size2) {
- return global_mutable_restrict1(index1, size1, index2, size2);
+ return basic_unit_lower<Z>::global_mutable_restrict1(index1, size1, index2, size2);
}
// return an index between the first and (1+last) filled column
static
BOOST_UBLAS_INLINE
size_type global_restrict2 (size_type index1, size_type size1, size_type index2, size_type size2) {
- return global_mutable_restrict2(index1, size1, index2, size2);
+ return basic_unit_lower<Z>::global_mutable_restrict2(index1, size1, index2, size2);
}
};
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk