Merge pull request #30528 from hbina/make_error_return_explicit
Make the default return value on crash explicitly a bool
This commit is contained in:
commit
b6c10c2e17
1 changed files with 2 additions and 2 deletions
|
@ -2054,11 +2054,11 @@ const ShaderLanguage::BuiltinFuncOutArgs ShaderLanguage::builtin_func_out_args[]
|
|||
|
||||
bool ShaderLanguage::_validate_function_call(BlockNode *p_block, OperatorNode *p_func, DataType *r_ret_type) {
|
||||
|
||||
ERR_FAIL_COND_V(p_func->op != OP_CALL && p_func->op != OP_CONSTRUCT, NULL);
|
||||
ERR_FAIL_COND_V(p_func->op != OP_CALL && p_func->op != OP_CONSTRUCT, false);
|
||||
|
||||
Vector<DataType> args;
|
||||
|
||||
ERR_FAIL_COND_V(p_func->arguments[0]->type != Node::TYPE_VARIABLE, NULL);
|
||||
ERR_FAIL_COND_V(p_func->arguments[0]->type != Node::TYPE_VARIABLE, false);
|
||||
|
||||
StringName name = static_cast<VariableNode *>(p_func->arguments[0])->name.operator String();
|
||||
|
||||
|
|
Loading…
Reference in a new issue