diff --git a/miniwin/miniwin/src/include/miniwin_d3drmmesh_p.h b/miniwin/miniwin/src/include/miniwin_d3drmmesh_p.h index e57de588..1d769d78 100644 --- a/miniwin/miniwin/src/include/miniwin_d3drmmesh_p.h +++ b/miniwin/miniwin/src/include/miniwin_d3drmmesh_p.h @@ -45,8 +45,8 @@ struct MeshGroup { material = other.material; quality = other.quality; vertexPerFace = other.vertexPerFace; - vertices = other.vertices; - faces = other.faces; + vertices = std::move(other.vertices); + faces = std::move(other.faces); other.texture = nullptr; other.material = nullptr; return *this;