summaryrefslogtreecommitdiff
path: root/src/parse
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-09-15 10:31:10 +0800
committerJohn Hodge <tpg@mutabah.net>2016-09-15 10:31:10 +0800
commit83512a2b797d69c536b5e8765cd98f0490d09c47 (patch)
treece7ae9ab23d1a6c3f9f83f6d435bd5f2517e92c3 /src/parse
parentb150106b0fc68d52b492ffe485e3c9c3ddad1c22 (diff)
downloadmrust-83512a2b797d69c536b5e8765cd98f0490d09c47.tar.gz
Parse+Typecheck Validate - Remove implicit ()
Diffstat (limited to 'src/parse')
-rw-r--r--src/parse/expr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/expr.cpp b/src/parse/expr.cpp
index ba4679e0..fbcb00d7 100644
--- a/src/parse/expr.cpp
+++ b/src/parse/expr.cpp
@@ -118,7 +118,7 @@ ExprNodeP Parse_ExprBlockNode(TokenStream& lex, bool is_unsafe/*=false*/)
if( LOOK_AHEAD(lex) == TOK_BRACE_CLOSE && add_silence_if_end )
{
DEBUG("expect_end == false, end of block");
- nodes.push_back( NEWNODE(AST::ExprNode_Tuple, ::std::vector<ExprNodeP>()) );
+ //nodes.push_back( NEWNODE(AST::ExprNode_Tuple, ::std::vector<ExprNodeP>()) );
yields_final_value = false;
// NOTE: Would break out of the loop, but we're in a switch
}