From c863a0dfca2b37e9de982bf85e586d333ce24e5f Mon Sep 17 00:00:00 2001 From: Barend Gehrels Date: Wed, 23 Jul 2014 12:52:37 +0200 Subject: [PATCH] [buffer][fix] remove unintended minus signes uncatched earlier (they come from a git gui copy/paste) This is quite a difference (in the aimes_test case) --- .../algorithms/detail/buffer/line_line_intersection.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/geometry/algorithms/detail/buffer/line_line_intersection.hpp b/include/boost/geometry/algorithms/detail/buffer/line_line_intersection.hpp index 2cf9baa8f..5500908f0 100644 --- a/include/boost/geometry/algorithms/detail/buffer/line_line_intersection.hpp +++ b/include/boost/geometry/algorithms/detail/buffer/line_line_intersection.hpp @@ -58,9 +58,9 @@ struct line_line_intersection if (geometry::math::abs(denominator) < limit) { return parallel_continue(get<0>(qj) - get<0>(qi), - - get<1>(qj) - get<1>(qi), - - get<0>(pj) - get<0>(pi), - - get<1>(pj) - get<1>(pi)) + get<1>(qj) - get<1>(qi), + get<0>(pj) - get<0>(pi), + get<1>(pj) - get<1>(pi)) ? strategy::buffer::join_continue : strategy::buffer::join_spike ;