Some code changed with Clang-Tidy
This commit is contained in:
parent
5c66771e3e
commit
4e5310cc60
175 changed files with 467 additions and 674 deletions
|
|
@ -1130,7 +1130,7 @@ VisualScriptExpression::ENode *VisualScriptExpression::_parse_expression() {
|
|||
if (next_op == -1) {
|
||||
|
||||
_set_error("Yet another parser bug....");
|
||||
ERR_FAIL_COND_V(next_op == -1, NULL);
|
||||
ERR_FAIL_V(NULL);
|
||||
}
|
||||
|
||||
// OK! create operator..
|
||||
|
|
|
|||
|
|
@ -51,10 +51,7 @@ int VisualScriptFunctionCall::get_output_sequence_port_count() const {
|
|||
|
||||
bool VisualScriptFunctionCall::has_input_sequence_port() const {
|
||||
|
||||
if ((method_cache.flags & METHOD_FLAG_CONST && call_mode != CALL_MODE_INSTANCE) || (call_mode == CALL_MODE_BASIC_TYPE && Variant::is_method_const(basic_type, function)))
|
||||
return false;
|
||||
else
|
||||
return true;
|
||||
return !((method_cache.flags & METHOD_FLAG_CONST && call_mode != CALL_MODE_INSTANCE) || (call_mode == CALL_MODE_BASIC_TYPE && Variant::is_method_const(basic_type, function)));
|
||||
}
|
||||
#ifdef TOOLS_ENABLED
|
||||
|
||||
|
|
@ -949,7 +946,7 @@ int VisualScriptPropertySet::get_output_sequence_port_count() const {
|
|||
|
||||
bool VisualScriptPropertySet::has_input_sequence_port() const {
|
||||
|
||||
return call_mode != CALL_MODE_BASIC_TYPE ? true : false;
|
||||
return call_mode != CALL_MODE_BASIC_TYPE;
|
||||
}
|
||||
|
||||
Node *VisualScriptPropertySet::_get_base_node() const {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue