diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-07-22 16:57:16 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-07-22 16:57:28 +0200 |
commit | 9a586defedd5172186ae31eb5e9e65aa35e5b27e (patch) | |
tree | 4cadad51b22a330226885505d536ff02b1367479 /modules | |
parent | f54fd5ac100f4430b4fa4cc5d926e7a38c54291f (diff) |
VisualScript: Fix -Wduplicate-branches warning
When VSDEBUG is a no-op (default), those branches did the same (nothing).
Diffstat (limited to 'modules')
-rw-r--r-- | modules/visual_script/visual_script.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/modules/visual_script/visual_script.cpp b/modules/visual_script/visual_script.cpp index f387c0f288..1af4b46e22 100644 --- a/modules/visual_script/visual_script.cpp +++ b/modules/visual_script/visual_script.cpp @@ -36,8 +36,6 @@ #include "scene/main/node.h" #include "visual_script_nodes.h" -#include <stdint.h> - //used by editor, this is not really saved void VisualScriptNode::set_breakpoint(bool p_breakpoint) { breakpoint = p_breakpoint; @@ -1764,11 +1762,7 @@ Variant VisualScriptInstance::_call_internal(const StringName &p_method, void *p } next = node->sequence_outputs[output]; - if (next) { - VSDEBUG("GOT NEXT NODE - " + itos(next->get_id())); - } else { - VSDEBUG("GOT NEXT NODE - NULL"); - } + VSDEBUG("GOT NEXT NODE - " + (next ? itos(next->get_id()) : "NULL")); } if (flow_stack) { |