summaryrefslogtreecommitdiff
path: root/boost/polygon/segment_data.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/polygon/segment_data.hpp')
-rw-r--r--boost/polygon/segment_data.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/boost/polygon/segment_data.hpp b/boost/polygon/segment_data.hpp
index dd317fc4aa..2bcfe11f97 100644
--- a/boost/polygon/segment_data.hpp
+++ b/boost/polygon/segment_data.hpp
@@ -90,7 +90,7 @@ class segment_data {
bool operator<(const segment_data& that) const {
if (points_[0] != that.points_[0]) {
- points_[0] < that.points_[0];
+ return points_[0] < that.points_[0];
}
return points_[1] < that.points_[1];
}