Fix unref param addDrawing()

This commit is contained in:
Thomas Krijnen
2021-10-04 10:40:19 +02:00
parent 8ff5ac974f
commit 666b55b3a3
+1 -1
View File
@@ -306,7 +306,7 @@ public:
void addDrawing(const gp_Pnt& pos, const gp_Dir& dir, const gp_Dir& ref, const std::string& name, bool include_projection) {
deferred_section_data_.emplace();
deferred_section_data_->push_back(vertical_section{ gp_Pln(gp_Ax3(pos, dir, ref)), name, true });
deferred_section_data_->push_back(vertical_section{ gp_Pln(gp_Ax3(pos, dir, ref)), name, include_projection });
}
protected: