|
@@ -296,6 +296,7 @@ public:
|
|
|
_FORCE_INLINE_ constexpr BitField(T p_value) { value = (int64_t)p_value; }
|
|
|
_FORCE_INLINE_ operator int64_t() const { return value; }
|
|
|
_FORCE_INLINE_ operator Variant() const { return value; }
|
|
|
+ _FORCE_INLINE_ BitField<T> operator^(const BitField<T> &p_b) const { return BitField<T>(value ^ p_b.value); }
|
|
|
};
|
|
|
|
|
|
#define TEMPL_MAKE_BITFIELD_TYPE_INFO(m_enum, m_impl) \
|