This commit is contained in:
Marshall Clow
2016-05-16 07:47:09 -07:00
parent 3aef0ab9ac
commit 5314d592e3

View File

@ -28,7 +28,7 @@ namespace boost { namespace algorithm {
template<typename InputIterator, typename Predicate> template<typename InputIterator, typename Predicate>
bool none_of ( InputIterator first, InputIterator last, Predicate p ) bool none_of ( InputIterator first, InputIterator last, Predicate p )
{ {
for ( ; first != last; ++first ) for ( ; first != last; ++first )
if ( p(*first)) if ( p(*first))
return false; return false;
return true; return true;