fix incorrect indentation which generates compil warnings

This commit is contained in:
jean-pierre charras 2016-11-06 19:42:10 +01:00
parent a262445047
commit cec3e300a8
1 changed files with 8 additions and 7 deletions

View File

@ -230,14 +230,15 @@ void MODULE::TransformGraphicShapesWithClearanceToPolygonSet(
if( outline->GetLayer() != aLayer )
break;
outline->TransformShapeWithClearanceToPolygon( aCornerBuffer,
0,
aCircleToSegmentsCount,
aCorrectionFactor );
break;
default:
break;
outline->TransformShapeWithClearanceToPolygon( aCornerBuffer,
0,
aCircleToSegmentsCount,
aCorrectionFactor );
break;
default:
break;
}
}