From 121e2b8447faf9020f090451051b8c3d3a4a3a1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Wed, 29 Nov 2023 11:16:43 +0100 Subject: [PATCH] Fixed possible uninitialized value warning --- src/Unittests/unittests_property.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Unittests/unittests_property.cc b/src/Unittests/unittests_property.cc index f9b0b45c..abb48151 100644 --- a/src/Unittests/unittests_property.cc +++ b/src/Unittests/unittests_property.cc @@ -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_;