From b05c83e6129817bfa4ea35d558f568ca01e00f7f Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Wed, 27 Aug 2025 11:05:59 +0200 Subject: [PATCH] Qualify return type to keep older versions of swig happy --- src/ifcparse/IfcFile.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ifcparse/IfcFile.h b/src/ifcparse/IfcFile.h index b619b62f0c..f230aec594 100644 --- a/src/ifcparse/IfcFile.h +++ b/src/ifcparse/IfcFile.h @@ -236,13 +236,13 @@ private: /// Returns the first entity in the range of instances contained in the model, /// in arbitrary order - auto begin() const { + IfcParse::IfcFile::entity_by_id_t::iterator begin() const { return byid_.begin(); } /// Returns the first entity in the range of instances contained in the model, /// in arbitrary order - auto end() const { + IfcParse::IfcFile::entity_by_id_t::iterator end() const { return byid_.end(); }