diff options
author | Alexander Kornienko <alexfh@google.com> | 2013-01-31 19:03:16 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2013-01-31 19:03:16 +0000 |
commit | 2a6036687b7cf6c4e222f76bd071baf1c0da7f1b (patch) | |
tree | c430148158958b6f1db14e60ee044562dc675c0b /clang/lib/Lex/PPExpressions.cpp | |
parent | 8471f0477b326709603eeea16e4a3271a54ef9ae (diff) | |
download | bcm5719-llvm-2a6036687b7cf6c4e222f76bd071baf1c0da7f1b.tar.gz bcm5719-llvm-2a6036687b7cf6c4e222f76bd071baf1c0da7f1b.zip |
Micro-change: moved a brace for better readability
llvm-svn: 174075
Diffstat (limited to 'clang/lib/Lex/PPExpressions.cpp')
-rw-r--r-- | clang/lib/Lex/PPExpressions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Lex/PPExpressions.cpp b/clang/lib/Lex/PPExpressions.cpp index c564653e8f7..7ebf3e00720 100644 --- a/clang/lib/Lex/PPExpressions.cpp +++ b/clang/lib/Lex/PPExpressions.cpp @@ -264,9 +264,9 @@ static bool EvaluateValue(PPValue &Result, Token &PeekTok, DefinedTracker &DT, return false; } case tok::char_constant: // 'x' - case tok::wide_char_constant: { // L'x' + case tok::wide_char_constant: // L'x' case tok::utf16_char_constant: // u'x' - case tok::utf32_char_constant: // U'x' + case tok::utf32_char_constant: { // U'x' // Complain about, and drop, any ud-suffix. if (PeekTok.hasUDSuffix()) PP.Diag(PeekTok, diag::err_pp_invalid_udl) << /*character*/0; |