[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)
This commit is contained in:
Barend Gehrels
2014-07-23 12:52:37 +02:00
parent 4bab5ab6ec
commit c863a0dfca

View File

@@ -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
;