pcbnew: fix temp var type
This commit is contained in:
parent
04e699f789
commit
f3400e03c6
|
@ -809,7 +809,7 @@ bool PNS_KICAD_IFACE::syncZone( PNS::NODE* aWorld, ZONE_CONTAINER* aZone )
|
||||||
{
|
{
|
||||||
auto tri = poly.TriangulatedPolygon( outline );
|
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;
|
VECTOR2I a, b, c;
|
||||||
tri->GetTriangle( i, a, b, c );
|
tri->GetTriangle( i, a, b, c );
|
||||||
|
|
Loading…
Reference in New Issue