Don't use a const reference for the enum constructor in Variant
This commit is contained in:
parent
37d1dfef9d
commit
5654d40367
1 changed files with 1 additions and 1 deletions
|
@ -488,7 +488,7 @@ public:
|
|||
Variant(const IPAddress &p_address);
|
||||
|
||||
#define VARIANT_ENUM_CLASS_CONSTRUCTOR(m_enum) \
|
||||
Variant(const m_enum &p_value) { \
|
||||
Variant(m_enum p_value) { \
|
||||
type = INT; \
|
||||
_data._int = (int64_t)p_value; \
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue