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 | 4362a1c9871e87c283a9c2d475ff3ca6ec32febe (patch) | |
| tree | f8ec4dea21b1a5576baf25c66f224d7a917d3f95 /clang | |
| parent | b5b71e07afd3f0212a5e7352c10b0a8208c748ea (diff) | |
| download | bcm5719-llvm-4362a1c9871e87c283a9c2d475ff3ca6ec32febe.tar.gz bcm5719-llvm-4362a1c9871e87c283a9c2d475ff3ca6ec32febe.zip | |
Fix coding standard mistake from my last commit.
That, and keep aKor happy :P.
llvm-svn: 114816
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/lib/Lex/Pragma.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Lex/Pragma.cpp b/clang/lib/Lex/Pragma.cpp index 4bca492adb0..cb4a81906de 100644 --- a/clang/lib/Lex/Pragma.cpp +++ b/clang/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; |

