From d44c2cbe2d5bda8aed57ef2e08dfcd4b2a0c34f9 Mon Sep 17 00:00:00 2001 From: nobody Date: Thu, 7 Jun 2007 20:53:46 +0000 Subject: [PATCH] This commit was manufactured by cvs2svn to create tag 'merged_to_RC_1_34_0'. [SVN r37938] --- include/boost/range/concepts.hpp | 20 ++++++++++---------- test/Jamfile.v2 | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/include/boost/range/concepts.hpp b/include/boost/range/concepts.hpp index c19766c..2441d43 100755 --- a/include/boost/range/concepts.hpp +++ b/include/boost/range/concepts.hpp @@ -68,15 +68,15 @@ namespace boost { range_iterator > >(); - i = begin(a); - i = end(a); - b = empty(a); + i = boost::begin(a); + i = boost::end(a); + b = boost::empty(a); const_constraints(a); } void const_constraints(const T& a) { - ci = begin(a); - ci = end(a); + ci = boost::begin(a); + ci = boost::end(a); } T a; range_iterator i; @@ -99,7 +99,7 @@ namespace boost { typename range_iterator::type > >(); - s = size(a); + s = boost::size(a); } T a; range_size s; @@ -120,14 +120,14 @@ namespace boost { typename range_iterator::type > >(); - i = rbegin(a); - i = rend(a); + i = boost::rbegin(a); + i = boost::rend(a); const_constraints(a); } void const_constraints(const T& a) { - ci = rbegin(a); - ci = rend(a); + ci = boost::rbegin(a); + ci = boost::rend(a); } T a; range_reverse_iterator i; diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index fcc67f2..b6942ca 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -11,7 +11,7 @@ rule range-test ( name : includes * ) { return [ - run $(name).cpp /boost/test//boost_unit_test_framework + run $(name).cpp /boost/test//boost_unit_test_framework/static : : : $(includes)