Skip to content

Commit

Permalink
Merge pull request #20842 from marcelofg55/osx_build_err
Browse files Browse the repository at this point in the history
Fix clang compile error
  • Loading branch information
Noshyaar authored Aug 10, 2018
2 parents b293dd3 + da1f161 commit 6e0adf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/math/expression.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2114,7 +2114,7 @@ String Expression::get_error_text() const {
void Expression::_bind_methods() {

ClassDB::bind_method(D_METHOD("parse", "expression", "input_names"), &Expression::parse, DEFVAL(Vector<String>()));
ClassDB::bind_method(D_METHOD("execute", "inputs", "base_instance", "show_error"), &Expression::execute, DEFVAL(Array()), DEFVAL(NULL), DEFVAL(true));
ClassDB::bind_method(D_METHOD("execute", "inputs", "base_instance", "show_error"), &Expression::execute, DEFVAL(Array()), DEFVAL(Variant()), DEFVAL(true));
ClassDB::bind_method(D_METHOD("has_execute_failed"), &Expression::has_execute_failed);
ClassDB::bind_method(D_METHOD("get_error_text"), &Expression::get_error_text);
}
Expand Down

0 comments on commit 6e0adf3

Please sign in to comment.