From d7f6e0edb469ff593e4136f8d034b0fe65d2cf0a Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Thu, 22 May 2025 04:52:25 +0200 Subject: [PATCH] Update miniwin/miniwin/src/include/miniwin_d3drmmesh_p.h Co-authored-by: Christian Semmler --- miniwin/miniwin/src/include/miniwin_d3drmmesh_p.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniwin/miniwin/src/include/miniwin_d3drmmesh_p.h b/miniwin/miniwin/src/include/miniwin_d3drmmesh_p.h index 1d769d78..a56a8792 100644 --- a/miniwin/miniwin/src/include/miniwin_d3drmmesh_p.h +++ b/miniwin/miniwin/src/include/miniwin_d3drmmesh_p.h @@ -18,7 +18,7 @@ struct MeshGroup { MeshGroup(const MeshGroup& other) : color(other.color), texture(other.texture), material(other.material), quality(other.quality), - vertexPerFace(other.vertexPerFace), vertices(other.vertices), faces(other.faces) + vertexPerFace(other.vertexPerFace), vertices(std::move(other.vertices)), faces(std::move(other.faces)) { if (texture) { texture->AddRef();