diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-09-27 06:34:47 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-09-27 06:34:47 +0000 |
commit | d83fc546a4351df49a8d106daaecb959e7278a86 (patch) | |
tree | 61884e5abfd1d2fe7d428c85dd0eb0ce8adb7533 | |
parent | 301669b381dfead44bda5ea3211d69ffec5a530b (diff) |
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
-rw-r--r-- | lib/Lex/Pragma.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |