2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-01 20:42:11 +00:00

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]
This commit is contained in:
Eric Niebler
2010-04-27 22:56:23 +00:00
parent 69fb3ed70c
commit 53842df1cb

View File

@@ -63,7 +63,7 @@ namespace boost {
template <typename Container, typename Predicate>
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 <typename InputIterator, typename T>
@@ -74,7 +74,7 @@ namespace boost {
template <typename Container, typename T>
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