Qualify return type to keep older versions of swig happy

This commit is contained in:
Thomas Krijnen
2025-08-27 11:05:59 +02:00
parent a958f1373c
commit b05c83e612
+2 -2
View File
@@ -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();
}