Fixed possible uninitialized value warning

This commit is contained in:
Jan Möbius
2023-11-29 11:16:43 +01:00
parent 01d6ca960d
commit 121e2b8447

View File

@@ -749,7 +749,7 @@ TEST_F(OpenMeshProperties, PropertyIterators ) {
TEST_F(OpenMeshProperties, MeshAssignment ) {
mesh_.clear();
mesh_.add_vertex(Mesh::Point());
mesh_.add_vertex(Mesh::Point(0, 0, 0));
auto copy = mesh_;