Fix compiler warning.

This commit is contained in:
Jeff Young 2018-09-12 21:39:41 +01:00
parent b43d0a0ed5
commit ba8647f676
1 changed files with 1 additions and 1 deletions

View File

@ -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 );