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

View File

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