diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-09-10 12:21:02 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-10 12:21:02 -0300 |
commit | fc61eb37ce004ecfa0656a46c68d111c68bb5c19 (patch) | |
tree | 0aa31fc3891596abca39042f27404f329e002b2d /bin/tests/test_gdscript.cpp | |
parent | 026c7913cf6f38b948d66484d97d7841fa1c9f16 (diff) | |
parent | a4674bda47ddeed7cc929bafdcd89b6bd156ee30 (diff) |
Merge pull request #5920 from 29jm/fix-warnings
Fix some more warnings
Diffstat (limited to 'bin/tests/test_gdscript.cpp')
-rw-r--r-- | bin/tests/test_gdscript.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/tests/test_gdscript.cpp b/bin/tests/test_gdscript.cpp index 4457d70b38..43d65f782b 100644 --- a/bin/tests/test_gdscript.cpp +++ b/bin/tests/test_gdscript.cpp @@ -222,6 +222,7 @@ static String _parser_expr(const GDParser::Node *p_expr) { case GDParser::OperatorNode::OP_BIT_AND: { txt=_parser_expr(c_node->arguments[0])+"&"+_parser_expr(c_node->arguments[1]); } break;; case GDParser::OperatorNode::OP_BIT_OR: { txt=_parser_expr(c_node->arguments[0])+"|"+_parser_expr(c_node->arguments[1]); } break; case GDParser::OperatorNode::OP_BIT_XOR: { txt=_parser_expr(c_node->arguments[0])+"^"+_parser_expr(c_node->arguments[1]); } break; + default: {} } |