std::move here inhibits copy elison, remove.

This commit is contained in:
Joseph Lenox 2019-12-04 19:58:40 -06:00
parent 510ba4eda4
commit c2aa7e7b3b

View File

@ -462,7 +462,7 @@ Pointf3s TriangleMesh::normals() const
} else { } else {
Slic3r::Log::warn("TriangleMesh", "normals() requires repair()"); Slic3r::Log::warn("TriangleMesh", "normals() requires repair()");
} }
return std::move(tmp); return tmp;
} }
Pointf3 TriangleMesh::size() const Pointf3 TriangleMesh::size() const