diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-08-10 16:22:41 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-10 16:22:41 -0300 |
commit | 783fd23deab0360366b52c551b3717a894f42ab7 (patch) | |
tree | e3be780af897539c89839c8b3c0a7a934e3e25b9 /modules/mono | |
parent | 7e33b2085c244b3d41f46f1fb4498a81af0a97c7 (diff) | |
parent | eb481198218399c9f86e5bfe1879757e1aa9a86e (diff) |
Merge pull request #19993 from vnen/gdscript-warnings
System for GDScript warnings
Diffstat (limited to 'modules/mono')
-rw-r--r-- | modules/mono/csharp_script.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/csharp_script.h b/modules/mono/csharp_script.h index 7f9732c297..363ae59d22 100644 --- a/modules/mono/csharp_script.h +++ b/modules/mono/csharp_script.h @@ -292,7 +292,7 @@ public: virtual Ref<Script> get_template(const String &p_class_name, const String &p_base_class_name) const; virtual bool is_using_templates(); virtual void make_template(const String &p_class_name, const String &p_base_class_name, Ref<Script> &p_script); - /* TODO */ virtual bool validate(const String &p_script, int &r_line_error, int &r_col_error, String &r_test_error, const String &p_path, List<String> *r_functions, Set<int> *r_safe_lines = NULL) const { return true; } + /* TODO */ virtual bool validate(const String &p_script, int &r_line_error, int &r_col_error, String &r_test_error, const String &p_path, List<String> *r_functions, List<ScriptLanguage::Warning> *r_warnings = NULL, Set<int> *r_safe_lines = NULL) const { return true; } virtual String validate_path(const String &p_path) const; virtual Script *create_script() const; virtual bool has_named_classes() const; |