pcbnew: fix temp var type

This commit is contained in:
Seth Hillbrand 2018-09-23 20:16:48 -07:00
parent 04e699f789
commit f3400e03c6
1 changed files with 1 additions and 1 deletions

View File

@ -809,7 +809,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 );