IfcParseExamples: fix gcc warning about not covered enum cases

This commit is contained in:
Andrej730
2026-08-27 19:14:23 +05:00
parent 2a9786bac2
commit 3a67602bd2
+2
View File
@@ -99,6 +99,8 @@ std::string format_string(const ifcopenshell::attribute_value& argument) {
stream << v; stream << v;
return stream.str(); return stream.str();
break; } break; }
default:
break;
} }
return "?"; return "?";
} }