Fix mismatched signatures for GDScriptLanguage::complete_code

This commit is contained in:
Rémi Verschelde 2017-08-24 12:44:51 +02:00 committed by GitHub
parent 90c7ee38c6
commit 3ea0943f64

View File

@ -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;
}