Skip to content

Commit fe537d9

Browse files
committed
Fix parens.
1 parent fc0982f commit fe537d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/delaunator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ Delaunator::Delaunator(std::vector<double> const& in_coords)
264264
}
265265
}
266266

267-
if (!(min_radius < (std::numeric_limits<double>::max()))) {
267+
if (!(min_radius < (std::numeric_limits<double>::max)())) {
268268
throw std::runtime_error("not triangulation");
269269
}
270270

0 commit comments

Comments
 (0)