Sprinkle a couple of std::move and a const

This commit is contained in:
jvoisin 2021-08-15 20:11:55 +02:00
parent 7400050b38
commit 5793f5cf18
3 changed files with 3 additions and 3 deletions

View file

@ -2141,7 +2141,7 @@ struct ConvexHull
finalEdges.push_back(edge);
}
_edges = finalEdges;
_edges = std::move(finalEdges);
}
void transform(const osg::Matrixd& m)