From d4f0495caaa33e6a297807565921357a49bca7c5 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Mon, 8 Nov 2021 09:59:15 +0100 Subject: [PATCH] Consistent setting type --- src/ifcgeom/IfcGeomIteratorSettings.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ifcgeom/IfcGeomIteratorSettings.h b/src/ifcgeom/IfcGeomIteratorSettings.h index 12cec3ff71..a1469d4143 100644 --- a/src/ifcgeom/IfcGeomIteratorSettings.h +++ b/src/ifcgeom/IfcGeomIteratorSettings.h @@ -138,14 +138,14 @@ namespace IfcGeom } /// Get boolean value for a single settings or for a combination of settings. - bool get(unsigned setting) const + bool get(uint64_t setting) const { /// @todo If unknown setting value/combination: throw IfcParse::IfcException("Invalid IteratorSetting")? return (settings_ & setting) != 0; } /// Set boolean value for a single settings or for a combination of settings. - void set(unsigned setting, bool value) + void set(uint64_t setting, bool value) { /// @todo If unknown setting value/combination: throw IfcParse::IfcException("Invalid IteratorSetting")? if (value) {