Skip to content

Commit

Permalink
fix copy-constructor of Path::Area class
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Mar 3, 2019
1 parent a604dab commit 2b0d347
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Path/App/Area.cpp
Expand Up @@ -188,7 +188,7 @@ Area::Area(const Area &other, bool deep_copy)
myShape = other.myShape;
myShapeDone = other.myShapeDone;
mySections.reserve(other.mySections.size());
for(shared_ptr<Area> area:mySections)
for(shared_ptr<Area> area:other.mySections)
mySections.push_back(make_shared<Area>(*area,true));
}

Expand Down

0 comments on commit 2b0d347

Please sign in to comment.