diff options
Diffstat (limited to 'modules/gdscript/gdscript.h')
| -rw-r--r-- | modules/gdscript/gdscript.h | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript.h b/modules/gdscript/gdscript.h index 739d18569f..d795500265 100644 --- a/modules/gdscript/gdscript.h +++ b/modules/gdscript/gdscript.h @@ -289,6 +289,7 @@ struct GDScriptWarning {  		UNSAFE_METHOD_ACCESS, // Function not found in the detected type (but can be in subtypes)  		UNSAFE_CAST, // Cast used in an unknown type  		UNSAFE_CALL_ARGUMENT, // Function call argument is of a supertype of the require argument +		DEPRECATED_KEYWORD, // The keyword is deprecated and should be replaced  		WARNING_MAX,  	} code;  	Vector<String> symbols;  |