Fix: shift count negative or too big

This commit is contained in:
Thomas Krijnen
2022-01-09 15:14:13 +01:00
parent 97f2aa976e
commit 2683bcba20
@@ -48,7 +48,7 @@ public:
USE_ELEMENT_STEPIDS = 1U << (IfcGeom::IteratorSettings::NUM_SETTINGS + 6U),
/// Use Y UP .
/// Applicable for OBJ output.
USE_Y_UP = 1U << (IfcGeom::IteratorSettings::NUM_SETTINGS + 7U),
USE_Y_UP = 1ULL << (IfcGeom::IteratorSettings::NUM_SETTINGS + 7ULL),
/// Number of different setting flags.
NUM_SETTINGS = 7
};