Remaining cpp changes

This commit is contained in:
Thomas Krijnen
2026-01-10 10:20:34 +01:00
parent 7f4d9e31c3
commit 69a4ad35a1
6 changed files with 32 additions and 10 deletions
+1 -1
View File
@@ -1556,7 +1556,7 @@ void fix_quantities(IfcParse::IfcFile& f, bool no_progress, bool quiet, bool std
auto IfcRelDefinesByProperties = f.schema()->declaration_by_name("IfcRelDefinesByProperties");
for (auto& eq : element_quantities) {
auto rels = eq.data()->file()->getInverse(eq.id(), IfcRelDefinesByProperties, -1);
auto rels = eq.file()->getInverse(eq.id(), IfcRelDefinesByProperties, -1);
for (auto& rel : rels) {
relationships.push_back(rel);
}