diff options
author | Danil Alexeev <danil@alexeev.xyz> | 2023-10-27 11:08:54 +0300 |
---|---|---|
committer | Danil Alexeev <danil@alexeev.xyz> | 2023-10-27 12:42:00 +0300 |
commit | 6e996a597fca1181436816a82cced6b8cf34f280 (patch) | |
tree | 1ef23d6336d90a6ba5b63ceb08734a7e504eaf2e /modules/gdscript/gdscript_warning.h | |
parent | 09946f79bd8215b2c6332de8821737580909a91c (diff) | |
download | redot-engine-6e996a597fca1181436816a82cced6b8cf34f280.tar.gz |
GDScript: Fix `UNSAFE_CAST` warning
Diffstat (limited to 'modules/gdscript/gdscript_warning.h')
-rw-r--r-- | modules/gdscript/gdscript_warning.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_warning.h b/modules/gdscript/gdscript_warning.h index 1aef6fa81b..6a3d84c0c7 100644 --- a/modules/gdscript/gdscript_warning.h +++ b/modules/gdscript/gdscript_warning.h @@ -68,7 +68,7 @@ public: INFERRED_DECLARATION, // Variable/constant/parameter has an implicitly inferred static type. UNSAFE_PROPERTY_ACCESS, // Property not found in the detected type (but can be in subtypes). UNSAFE_METHOD_ACCESS, // Function not found in the detected type (but can be in subtypes). - UNSAFE_CAST, // Cast used in an unknown type. + UNSAFE_CAST, // Casting a `Variant` value to non-`Variant`. UNSAFE_CALL_ARGUMENT, // Function call argument is of a supertype of the required type. UNSAFE_VOID_RETURN, // Function returns void but returned a call to a function that can't be type checked. RETURN_VALUE_DISCARDED, // Function call returns something but the value isn't used. |