diff --git a/spirv_common.hpp b/spirv_common.hpp index 630b9e3c..8744d65d 100644 --- a/spirv_common.hpp +++ b/spirv_common.hpp @@ -1294,7 +1294,8 @@ static inline bool type_is_floating_point(const SPIRType &type) static inline bool type_is_integral(const SPIRType &type) { - return type.basetype == SPIRType::Int || type.basetype == SPIRType::UInt || type.basetype == SPIRType::Int64 || type.basetype == SPIRType::UInt64; + return type.basetype == SPIRType::Int || type.basetype == SPIRType::UInt || type.basetype == SPIRType::Int64 || + type.basetype == SPIRType::UInt64; } } // namespace spirv_cross