From 7f3e219b31842ff923e7dd7df36b09d9b01b1d3c Mon Sep 17 00:00:00 2001 From: Max Lyon Date: Wed, 8 Feb 2023 13:56:05 +0100 Subject: [PATCH] add missing OpenMesh:: namespace --- src/Unittests/unittests_tutorials.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Unittests/unittests_tutorials.cc b/src/Unittests/unittests_tutorials.cc index 309d354e..fab485ac 100644 --- a/src/Unittests/unittests_tutorials.cc +++ b/src/Unittests/unittests_tutorials.cc @@ -781,7 +781,7 @@ TEST_F(OpenMeshTutorials, storing_custom_properties) { EXPECT_TRUE(mesh.mproperty(mprop_map).persistent()) << "property should be persistent"; // write mesh - IO::Options opts(IO::Options::Custom); + OpenMesh::IO::Options opts(OpenMesh::IO::Options::Custom); bool ok = OpenMesh::IO::write_mesh(mesh, "persistence-check.om", opts); EXPECT_TRUE(ok) << "Cannot write mesh to file 'persistent-check.om'";