2
0
mirror of https://github.com/boostorg/polygon.git synced 2026-02-09 11:22:15 +00:00

Merge pull request #2 from MarcelRaad/patch-1

Fix warning with MSVC 14
This commit is contained in:
Andrii Sydorchuk
2014-07-03 19:49:10 +02:00

View File

@@ -638,7 +638,7 @@ class voronoi_predicates {
if (is_zero(denom)) {
big_int_type numer = teta * teta - sum_AB * sum_AB;
big_int_type denom = teta * sum_AB;
denom = teta * sum_AB;
cA[0] = denom * sum_x * 2 + numer * vec_x;
cB[0] = segm_len;
cA[1] = denom * sum_AB * 2 + numer * teta;