diff options
author | ocean (they/them) <anvilfolk@gmail.com> | 2022-12-03 22:02:03 -0500 |
---|---|---|
committer | ocean (they/them) <anvilfolk@gmail.com> | 2023-01-09 11:08:07 -0500 |
commit | 366ec895b1b73e3d509fbc591a6289c0d03774aa (patch) | |
tree | b62023707b8aa93911caee86213a1bb90261e402 /modules/gdscript/gdscript_analyzer.h | |
parent | e84bab8e4f3c3bac0d203eca415ab856c29dd337 (diff) | |
download | redot-engine-366ec895b1b73e3d509fbc591a6289c0d03774aa.tar.gz |
Assorted enum and native type fixes
Diffstat (limited to 'modules/gdscript/gdscript_analyzer.h')
-rw-r--r-- | modules/gdscript/gdscript_analyzer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_analyzer.h b/modules/gdscript/gdscript_analyzer.h index a7f8e3b556..211ae3e7c2 100644 --- a/modules/gdscript/gdscript_analyzer.h +++ b/modules/gdscript/gdscript_analyzer.h @@ -107,7 +107,7 @@ class GDScriptAnalyzer { // Helpers. GDScriptParser::DataType type_from_variant(const Variant &p_value, const GDScriptParser::Node *p_source); - GDScriptParser::DataType type_from_metatype(const GDScriptParser::DataType &p_meta_type) const; + static GDScriptParser::DataType type_from_metatype(const GDScriptParser::DataType &p_meta_type); GDScriptParser::DataType type_from_property(const PropertyInfo &p_property) const; GDScriptParser::DataType make_global_class_meta_type(const StringName &p_class_name, const GDScriptParser::Node *p_source); bool get_function_signature(GDScriptParser::Node *p_source, bool p_is_constructor, GDScriptParser::DataType base_type, const StringName &p_function, GDScriptParser::DataType &r_return_type, List<GDScriptParser::DataType> &r_par_types, int &r_default_arg_count, bool &r_static, bool &r_vararg); |