add missing OpenMesh:: namespace

This commit is contained in:
Max Lyon
2023-02-08 13:56:05 +01:00
parent ebb000e167
commit 7f3e219b31

View File

@@ -781,7 +781,7 @@ TEST_F(OpenMeshTutorials, storing_custom_properties) {
EXPECT_TRUE(mesh.mproperty(mprop_map).persistent()) << "property should be persistent"; EXPECT_TRUE(mesh.mproperty(mprop_map).persistent()) << "property should be persistent";
// write mesh // 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); bool ok = OpenMesh::IO::write_mesh(mesh, "persistence-check.om", opts);
EXPECT_TRUE(ok) << "Cannot write mesh to file 'persistent-check.om'"; EXPECT_TRUE(ok) << "Cannot write mesh to file 'persistent-check.om'";