From 6816ad5c0f6fede9ca2f4b724d8ca97c90e07ea0 Mon Sep 17 00:00:00 2001 From: Dirk Olbrich Date: Sun, 3 Sep 2023 13:59:36 +0200 Subject: [PATCH] ifcparse: fix compiler warning -Wignored-qualifiers --- src/ifcparse/IfcFile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcparse/IfcFile.h b/src/ifcparse/IfcFile.h index eaf5d8848c..88bed3c065 100644 --- a/src/ifcparse/IfcFile.h +++ b/src/ifcparse/IfcFile.h @@ -272,7 +272,7 @@ public: unsigned int getMaxId() const { return MaxId; } - const IfcParse::declaration* const ifcroot_type() const { return ifcroot_type_; } + const IfcParse::declaration* ifcroot_type() const { return ifcroot_type_; } void recalculate_id_counter();