Remove unused local variable (#16698)

This commit is contained in:
mogemimi 2016-10-14 18:48:00 +09:00 committed by minggo
parent 93609ff586
commit dde86b404a
1 changed files with 0 additions and 1 deletions

View File

@ -552,7 +552,6 @@ std::vector<Vec2> AutoPolygon::expand(const std::vector<Vec2>& points, const coc
while(p2->IsHole()){
p2 = p2->GetNext();
}
auto end = p2->Contour.end();
for(const auto& pt : p2->Contour)
{
outPoints.push_back(Vec2(pt.X/PRECISION, pt.Y/PRECISION));