Skip to content

Commit 5314d59

Browse files
committed
Fix up misleading indentation; Fixes https://svn.boost.org/trac/boost/ticket/12206
1 parent 3aef0ab commit 5314d59

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/boost/algorithm/cxx11/none_of.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ namespace boost { namespace algorithm {
2828
template<typename InputIterator, typename Predicate>
2929
bool none_of ( InputIterator first, InputIterator last, Predicate p )
3030
{
31-
for ( ; first != last; ++first )
32-
if ( p(*first))
33-
return false;
31+
for ( ; first != last; ++first )
32+
if ( p(*first))
33+
return false;
3434
return true;
3535
}
3636

0 commit comments

Comments
 (0)