summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2017-08-24 12:44:51 +0200
committerGitHub <noreply@github.com>2017-08-24 12:44:51 +0200
commit3ea0943f645e5fda0b1bb68415e9c92ed4cf97dd (patch)
tree88e66c0c2af81a89f03fcedb3645ad3fe4eab69b
parent90c7ee38c6f696eb2c489bef71a8b063f21bf51b (diff)
Fix mismatched signatures for GDScriptLanguage::complete_code
-rw-r--r--modules/gdscript/gd_editor.cpp2
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;
}