Skip to content

Commit 150bbf9

Browse files
committed
Fixed bug in clipper.triangulation.cpp
1 parent 6853e94 commit 150bbf9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

CPP/Clipper2Lib/src/clipper.triangulation.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*******************************************************************************
22
* Author : Angus Johnson *
3-
* Date : 7 December 2025 *
3+
* Date : 10 December 2025 *
44
* Release : BETA RELEASE *
55
* Website : https://www.angusj.com *
66
* Copyright : Angus Johnson 2010-2025 *
@@ -1145,7 +1145,7 @@ namespace Clipper2Lib
11451145
allVertices.reserve(allVertices.capacity() + total_vertex_count);
11461146
allEdges.reserve(allEdges.capacity() + total_vertex_count);
11471147

1148-
for each(const Path64 path in paths)
1148+
for (const Path64 path : paths)
11491149
AddPath(path);
11501150
return (allVertices.size() > 2);
11511151
}

0 commit comments

Comments
 (0)