diff options
Diffstat (limited to 'core/variant')
-rw-r--r-- | core/variant/type_info.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/variant/type_info.h b/core/variant/type_info.h index 7372c60754..cfea9ea663 100644 --- a/core/variant/type_info.h +++ b/core/variant/type_info.h @@ -276,7 +276,7 @@ inline String enum_qualified_name_to_class_info_name(const String &p_qualified_n template <typename T> inline StringName __constant_get_enum_name(T param, const String &p_constant) { - if (GetTypeInfo<T>::VARIANT_TYPE == Variant::NIL) { + if constexpr (GetTypeInfo<T>::VARIANT_TYPE == Variant::NIL) { ERR_PRINT("Missing VARIANT_ENUM_CAST for constant's enum: " + p_constant); } return GetTypeInfo<T>::get_class_info().class_name; |