Skip to content

Commit c8313ea

Browse files
committed
Missed max guarding for windows.
1 parent e88ebd1 commit c8313ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/delaunator.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace delaunator {
1313

1414
constexpr std::size_t INVALID_INDEX =
15-
std::numeric_limits<std::size_t>::max();
15+
(std::numeric_limits<std::size_t>::max)();
1616

1717
class Point
1818
{

0 commit comments

Comments
 (0)