From: Michael J. Spencer Date: Mon, 27 Sep 2010 06:34:47 +0000 (+0000) Subject: Fix coding standard mistake from my last commit. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d83fc546a4351df49a8d106daaecb959e7278a86;p=clang Fix coding standard mistake from my last commit. That, and keep aKor happy :P. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@114816 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Lex/Pragma.cpp b/lib/Lex/Pragma.cpp index 4bca492adb..cb4a81906d 100644 --- a/lib/Lex/Pragma.cpp +++ b/lib/Lex/Pragma.cpp @@ -494,7 +494,7 @@ void Preprocessor::HandlePragmaMessage(Token &Tok) { SourceLocation MessageLoc = Tok.getLocation(); Lex(Tok); bool ExpectClosingParen = false; - switch(Tok.getKind()) { + switch (Tok.getKind()) { case tok::l_paren: // We have a MSVC style pragma message. ExpectClosingParen = true;