Change the vector type to non const

I dont know why this fails on linux. On windows this works....
This commit is contained in:
apeltauer
2019-01-25 07:47:10 +01:00
committed by wmayer
parent 4f08bb5c76
commit f747d1cb46

View File

@@ -650,7 +650,7 @@ void PartGui::DlgProjectionOnSurface::create_projection_face_from_wire(std::vect
// --> othwerwise BRepBuilderAPI_MakeFace can not make a face from the wire!
for (auto itWireVec : itCurrentShape.aProjectedWireVec)
{
std::vector<const TopoDS_Shape> edgeVec;
std::vector<TopoDS_Shape> edgeVec;
for (TopExp_Explorer aExplorer(itWireVec, TopAbs_EDGE); aExplorer.More(); aExplorer.Next())
{
auto currentEdge = TopoDS::Edge(aExplorer.Current());