We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6853e94 commit 150bbf9Copy full SHA for 150bbf9
1 file changed
CPP/Clipper2Lib/src/clipper.triangulation.cpp
@@ -1,6 +1,6 @@
1
/*******************************************************************************
2
* Author : Angus Johnson *
3
-* Date : 7 December 2025 *
+* Date : 10 December 2025 *
4
* Release : BETA RELEASE *
5
* Website : https://www.angusj.com *
6
* Copyright : Angus Johnson 2010-2025 *
@@ -1145,7 +1145,7 @@ namespace Clipper2Lib
1145
allVertices.reserve(allVertices.capacity() + total_vertex_count);
1146
allEdges.reserve(allEdges.capacity() + total_vertex_count);
1147
1148
- for each(const Path64 path in paths)
+ for (const Path64 path : paths)
1149
AddPath(path);
1150
return (allVertices.size() > 2);
1151
}
0 commit comments