We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4773905 commit 380f06dCopy full SHA for 380f06d
1 file changed
src/libufc/utils/geoutils.cpp
@@ -67,7 +67,7 @@ bool Polygon::intersects(Coordinate point) const
67
bool inside = false;
68
69
Coordinate p1 = points[0];
70
- for (int i = 1; i <= num_vertices; i++)
+ for (size_t i = 1; i <= num_vertices; i++)
71
{
72
Coordinate p2 = points[i % num_vertices];
73
0 commit comments