From 288455416bacc9b29ce5c2579108fa44a29be679 Mon Sep 17 00:00:00 2001 From: krande Date: Wed, 14 Feb 2024 20:24:47 +0100 Subject: [PATCH] add missing typename --- src/ifcparse/IfcHierarchyHelper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcparse/IfcHierarchyHelper.h b/src/ifcparse/IfcHierarchyHelper.h index 6bdc171ca9..8bb962d5b0 100644 --- a/src/ifcparse/IfcHierarchyHelper.h +++ b/src/ifcparse/IfcHierarchyHelper.h @@ -453,7 +453,7 @@ class IFC_PARSE_API IfcHierarchyHelper : public IfcParse::IfcFile { } int relating_index = 4; int related_index = 5; - if (T::Class().name() == "IfcRelContainedInSpatialStructure" || std::is_base_of::value) { + if (T::Class().name() == "IfcRelContainedInSpatialStructure" || std::is_base_of::value) { // some classes have attributes reversed. std::swap(relating_index, related_index); }