diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-09-28 17:36:59 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-09-28 17:36:59 +0300 |
commit | 8a9659b1528f6f8c1bd4bb560eeaec2f3f7b771c (patch) | |
tree | ceff0fb87e4dfc226e57f63d03f78c3af682afdb /core/variant | |
parent | 14e1f36e614686f3fea0c74fac3624d1027dd5cc (diff) |
Change BitField to use 64-bit int.
Diffstat (limited to 'core/variant')
-rw-r--r-- | core/variant/type_info.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/variant/type_info.h b/core/variant/type_info.h index 7372c60754..05ed6559fd 100644 --- a/core/variant/type_info.h +++ b/core/variant/type_info.h @@ -284,14 +284,14 @@ inline StringName __constant_get_enum_name(T param, const String &p_constant) { template <class T> class BitField { - uint32_t value = 0; + int64_t value = 0; public: _FORCE_INLINE_ void set_flag(T p_flag) { value |= p_flag; } _FORCE_INLINE_ bool has_flag(T p_flag) const { return value & p_flag; } _FORCE_INLINE_ void clear_flag(T p_flag) { return value &= ~p_flag; } - _FORCE_INLINE_ BitField(uint32_t p_value) { value = p_value; } - _FORCE_INLINE_ operator uint32_t() const { return value; } + _FORCE_INLINE_ BitField(int64_t p_value) { value = p_value; } + _FORCE_INLINE_ operator int64_t() const { return value; } _FORCE_INLINE_ operator Variant() const { return value; } }; |