diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-08-24 12:44:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-24 12:44:51 +0200 |
commit | 3ea0943f645e5fda0b1bb68415e9c92ed4cf97dd (patch) | |
tree | 88e66c0c2af81a89f03fcedb3645ad3fe4eab69b | |
parent | 90c7ee38c6f696eb2c489bef71a8b063f21bf51b (diff) |
Fix mismatched signatures for GDScriptLanguage::complete_code
-rw-r--r-- | modules/gdscript/gd_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_editor.cpp b/modules/gdscript/gd_editor.cpp index d6969c142d..863009f1a7 100644 --- a/modules/gdscript/gd_editor.cpp +++ b/modules/gdscript/gd_editor.cpp @@ -2485,7 +2485,7 @@ Error GDScriptLanguage::complete_code(const String &p_code, const String &p_base #else -Error GDScriptLanguage::complete_code(const String &p_code, const String &p_base_path, Object *p_owner, List<String> *r_options, String &r_call_hint) { +Error GDScriptLanguage::complete_code(const String &p_code, const String &p_base_path, Object *p_owner, List<String> *r_options, bool &r_forced, String &r_call_hint) { return OK; } |