commit | 22fc2665e6d77b59402a69c2f62dca0f6bf43aba | [log] [tgz] |
---|---|---|
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | Mon Aug 18 22:49:40 2008 +0000 |
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | Mon Aug 18 22:49:40 2008 +0000 |
tree | b1286d5bc1e422ac4ea9caba5dad41ba2751acba | |
parent | 927b5a5ac2d66a403349c0d6eaf09a2ee831fc57 [diff] [blame] |
"Remove the 'else' since the code is fallthrough after it." - suggestion by Chris. llvm-svn: 54952
diff --git a/clang/lib/Parse/ParseExpr.cpp b/clang/lib/Parse/ParseExpr.cpp index 16bd1cb..29a2429 100644 --- a/clang/lib/Parse/ParseExpr.cpp +++ b/clang/lib/Parse/ParseExpr.cpp
@@ -1017,8 +1017,8 @@ ExprResult Expr = ParseAssignmentExpression(); if (Expr.isInvalid) return true; - else - Exprs.push_back(Expr.Val); + + Exprs.push_back(Expr.Val); if (Tok.isNot(tok::comma)) return false;