summaryrefslogtreecommitdiff
path: root/boost/geometry/algorithms/detail/check_iterator_range.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/geometry/algorithms/detail/check_iterator_range.hpp')
-rw-r--r--boost/geometry/algorithms/detail/check_iterator_range.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/geometry/algorithms/detail/check_iterator_range.hpp b/boost/geometry/algorithms/detail/check_iterator_range.hpp
index 09ea7f79a0..9bd1d7ae27 100644
--- a/boost/geometry/algorithms/detail/check_iterator_range.hpp
+++ b/boost/geometry/algorithms/detail/check_iterator_range.hpp
@@ -33,7 +33,7 @@ struct check_iterator_range
{
for (InputIterator it = first; it != beyond; ++it)
{
- if ( !Predicate::apply(*it) )
+ if (! Predicate::apply(*it))
{
return false;
}
@@ -54,7 +54,7 @@ struct check_iterator_range
for (InputIterator it = first; it != beyond; ++it)
{
- if ( !predicate.apply(*it) )
+ if (! predicate.apply(*it))
{
return false;
}