From 85dd95cf77ca87d0382688afd12ec2d0d92ded13 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Fri, 15 Dec 2006 21:44:53 +0000 Subject: [PATCH] Remove none algorith, which is unused and conflicts with none.hpp [SVN r36409] --- include/boost/detail/algorithm.hpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/include/boost/detail/algorithm.hpp b/include/boost/detail/algorithm.hpp index 30667d6a..376baedd 100644 --- a/include/boost/detail/algorithm.hpp +++ b/include/boost/detail/algorithm.hpp @@ -176,17 +176,6 @@ namespace boost { return all(begin(c), end(c), p); } - template - bool none(InputIterator first, InputIterator last, Predicate p) - { - return std::find_if(first, last, p) == last; - } - template - bool none(const Container& c, Predicate p) - { - return none(begin(c), end(c), p); - } - template std::size_t count(const Container& c, const T& value) {