We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3aef0ab commit 5314d59Copy full SHA for 5314d59
include/boost/algorithm/cxx11/none_of.hpp
@@ -28,9 +28,9 @@ namespace boost { namespace algorithm {
28
template<typename InputIterator, typename Predicate>
29
bool none_of ( InputIterator first, InputIterator last, Predicate p )
30
{
31
-for ( ; first != last; ++first )
32
- if ( p(*first))
33
- return false;
+ for ( ; first != last; ++first )
+ if ( p(*first))
+ return false;
34
return true;
35
}
36
0 commit comments