Fix compile warning

This commit is contained in:
Matthias Hochsteger 2023-04-26 16:48:29 +02:00
parent 9ed534c301
commit bdd15644d3

View File

@ -1335,7 +1335,7 @@ namespace netgen
const auto& occface = dynamic_cast<const OCCFace&>(face);
for(auto& vert : GetVertices(occface.Shape()))
verts.Append(&GetVertex(vert));
return move(verts);
return std::move(verts);
}