1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Don't use a const reference for the enum constructor in Variant

This commit is contained in:
Aaron Franke
2022-10-16 18:52:54 -05:00
parent 37d1dfef9d
commit 5654d40367

View File

@@ -488,7 +488,7 @@ public:
Variant(const IPAddress &p_address); Variant(const IPAddress &p_address);
#define VARIANT_ENUM_CLASS_CONSTRUCTOR(m_enum) \ #define VARIANT_ENUM_CLASS_CONSTRUCTOR(m_enum) \
Variant(const m_enum &p_value) { \ Variant(m_enum p_value) { \
type = INT; \ type = INT; \
_data._int = (int64_t)p_value; \ _data._int = (int64_t)p_value; \
} }