[cfe-commits] r41581 - in /cfe/trunk: Lex/PPExpressions.cpp Sema/SemaExpr.cpp test/Sema/c89.c

Chris Lattner clattner at apple.com
Wed Aug 29 15:09:37 PDT 2007


On Aug 29, 2007, at 3:00 PM, Neil Booth wrote:

> +    // long long is a C99 feature.
> +    if (!PP.getLangOptions().C99 && !PP.getLangOptions().CPlusPlus0x
> +	&& Literal.isLongLong)
> +      PP.Diag(PeekTok, diag::ext_longlong);

Looks like a tab snuck in before the &&.  Please use spaces,

-Chris



More information about the cfe-commits mailing list