Change get_completion_identifier_is_function to return a bool

A minor bugfix
This commit is contained in:
Aaron Franke 2020-05-09 13:45:00 -04:00
parent 38a0ff2249
commit cf4482e8c4
No known key found for this signature in database
GPG key ID: 40A1750B977E56BF
2 changed files with 2 additions and 2 deletions

View file

@ -8784,7 +8784,7 @@ int GDScriptParser::get_completion_argument_index() {
return completion_argument;
}
int GDScriptParser::get_completion_identifier_is_function() {
bool GDScriptParser::get_completion_identifier_is_function() {
return completion_ident_is_call;
}

View file

@ -683,7 +683,7 @@ public:
BlockNode *get_completion_block();
FunctionNode *get_completion_function();
int get_completion_argument_index();
int get_completion_identifier_is_function();
bool get_completion_identifier_is_function();
const List<String> &get_dependencies() const { return dependencies; }