Fix compiler warning.
This commit is contained in:
parent
b43d0a0ed5
commit
ba8647f676
|
@ -821,7 +821,7 @@ bool PNS_KICAD_IFACE::syncZone( PNS::NODE* aWorld, ZONE_CONTAINER* aZone )
|
|||
{
|
||||
auto tri = poly.TriangulatedPolygon( outline );
|
||||
|
||||
for( int i = 0; i < tri->GetTriangleCount(); i++)
|
||||
for( size_t i = 0; i < tri->GetTriangleCount(); i++)
|
||||
{
|
||||
VECTOR2I a, b, c;
|
||||
tri->GetTriangle( i, a, b, c );
|
||||
|
|
Loading…
Reference in New Issue