From 3312f4a03d66f5db58c22cbad3bcfc46099b4ab9 Mon Sep 17 00:00:00 2001 From: Menelaos Karavelas Date: Sat, 7 Mar 2015 18:13:12 +0200 Subject: [PATCH] [algorithms][is_valid] apply coding rules (space after operator !) --- .../boost/geometry/algorithms/detail/is_valid/has_spikes.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/geometry/algorithms/detail/is_valid/has_spikes.hpp b/include/boost/geometry/algorithms/detail/is_valid/has_spikes.hpp index 703fdbace..090c026e8 100644 --- a/include/boost/geometry/algorithms/detail/is_valid/has_spikes.hpp +++ b/include/boost/geometry/algorithms/detail/is_valid/has_spikes.hpp @@ -67,7 +67,7 @@ struct not_equal_to template inline bool operator()(OtherPoint const& other) const { - return !geometry::equals(other, m_point); + return ! geometry::equals(other, m_point); } };