confusing indentations I've seen recently... Just noticed these while
making a change elsewhere.
No functionality changed.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@134685
91177308-0d34-0410-b5e6-
96231b3b80d8
return ParseBuiltinPrimaryExpression();
case tok::kw___null:
return Actions.ActOnGNUNullExpr(ConsumeToken());
- break;
+
case tok::plusplus: // unary-expression: '++' unary-expression [C99]
case tok::minusminus: { // unary-expression: '--' unary-expression [C99]
// C++ [expr.unary] has:
ConsumeParen());
break;
}
-}
+ }
if (Res.isInvalid())
return ExprError();