diff options
author | Дмитрий Сальников <salnikov.mine@yandex.ru> | 2022-12-13 13:08:01 +0300 |
---|---|---|
committer | Дмитрий Сальников <salnikov.mine@yandex.ru> | 2022-12-13 13:36:16 +0300 |
commit | b7eeddcf5271a273746c95cd3b6cc2cb5f73f2fc (patch) | |
tree | 366556ed0d65b82380ed154e33fdace09779786a | |
parent | c21705982e8d58c46cc0b359d6986fd4f88f2612 (diff) | |
download | redot-cpp-b7eeddcf5271a273746c95cd3b6cc2cb5f73f2fc.tar.gz |
Use int64_t for BitField as in Godot itself
-rw-r--r-- | include/godot_cpp/core/type_info.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/godot_cpp/core/type_info.hpp b/include/godot_cpp/core/type_info.hpp index b5994e2..e570db7 100644 --- a/include/godot_cpp/core/type_info.hpp +++ b/include/godot_cpp/core/type_info.hpp @@ -240,14 +240,14 @@ inline StringName __constant_get_enum_name(T param, StringName 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; } }; |