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) {