From 4727528ca7e2e521164a7cd05bb460238e73fe84 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Tue, 4 May 2010 15:47:50 +0000 Subject: [PATCH] Fix several problems with two-phase name lookup in ublas. svn path=/trunk/boost/numeric/ublas/; revision=61759 --- include/boost/numeric/ublas/functional.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/boost/numeric/ublas/functional.hpp b/include/boost/numeric/ublas/functional.hpp index 85f14d0c..3512e845 100644 --- a/include/boost/numeric/ublas/functional.hpp +++ b/include/boost/numeric/ublas/functional.hpp @@ -2016,25 +2016,25 @@ namespace boost { namespace numeric { namespace ublas { 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::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::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::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::global_mutable_restrict2(index1, size1, index2, size2); } };