From 53842df1cbd511bfb6087431fd9683c7f0f9ac3e Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Tue, 27 Apr 2010 22:56:23 +0000 Subject: [PATCH] Merged revisions 61263 via svnmerge from https://svn.boost.org/svn/boost/trunk ........ r61263 | jewillco | 2010-04-13 17:16:21 -0700 (Tue, 13 Apr 2010) | 1 line Disambiguated begin and end; ........ [SVN r61633] --- include/boost/detail/algorithm.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/detail/algorithm.hpp b/include/boost/detail/algorithm.hpp index fd1a83ec..3f9297bc 100644 --- a/include/boost/detail/algorithm.hpp +++ b/include/boost/detail/algorithm.hpp @@ -63,7 +63,7 @@ namespace boost { template bool any_if(const Container& c, Predicate p) { - return any_if(begin(c), end(c), p); + return any_if(boost::begin(c), boost::end(c), p); } template @@ -74,7 +74,7 @@ namespace boost { template bool container_contains(const Container& c, const T& value) { - return container_contains(begin(c), end(c), value); + return container_contains(boost::begin(c), boost::end(c), value); } } // namespace boost