From: Andy Gibbs Date: Sat, 17 Nov 2012 22:17:28 +0000 (+0000) Subject: Clean up code according to coding standards X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6d534d45a598e2ee1c24e5b286f8fab4ad89fb56;p=clang Clean up code according to coding standards git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@168274 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Lex/PPMacroExpansion.cpp b/lib/Lex/PPMacroExpansion.cpp index 1e77317d3e..c5948e69ec 100644 --- a/lib/Lex/PPMacroExpansion.cpp +++ b/lib/Lex/PPMacroExpansion.cpp @@ -1293,9 +1293,8 @@ void Preprocessor::ExpandBuiltinMacro(Token &Tok) { if (!FinishLexStringLiteral(Tok, WarningName, "'__has_warning'", /*MacroExpansion=*/false)) { // Eat tokens until ')'. - while (Tok.isNot(tok::r_paren) - && Tok.isNot(tok::eod) - && Tok.isNot(tok::eof)) + while (Tok.isNot(tok::r_paren) && Tok.isNot(tok::eod) && + Tok.isNot(tok::eof)) LexUnexpandedToken(Tok); break; }