From: Neil Booth Date: Wed, 29 Aug 2007 22:13:52 +0000 (+0000) Subject: Spaces not tabs. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=79859c3ce1040e07ffed8f3a17dff33b739c8f11;p=clang Spaces not tabs. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41582 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Lex/PPExpressions.cpp b/Lex/PPExpressions.cpp index 6793a0123c..48ec52af8c 100644 --- a/Lex/PPExpressions.cpp +++ b/Lex/PPExpressions.cpp @@ -169,7 +169,7 @@ static bool EvaluateValue(llvm::APSInt &Result, Token &PeekTok, // long long is a C99 feature. if (!PP.getLangOptions().C99 && !PP.getLangOptions().CPlusPlus0x - && Literal.isLongLong) + && Literal.isLongLong) PP.Diag(PeekTok, diag::ext_longlong); // Parse the integer literal into Result. diff --git a/Sema/SemaExpr.cpp b/Sema/SemaExpr.cpp index 272fc6f93d..0747bbc8b1 100644 --- a/Sema/SemaExpr.cpp +++ b/Sema/SemaExpr.cpp @@ -158,7 +158,7 @@ Action::ExprResult Sema::ParseNumericConstant(const Token &Tok) { // long long is a C99 feature. if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x && - Literal.isLongLong) + Literal.isLongLong) Diag(Tok.getLocation(), diag::ext_longlong); // Get the value in the widest-possible width.