Consistent setting type

This commit is contained in:
Thomas Krijnen
2021-11-08 09:59:15 +01:00
parent 669295d4ac
commit d4f0495caa
+2 -2
View File
@@ -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) {