]> granicus.if.org Git - clang/commitdiff
Micro-change: moved a brace for better readability
authorAlexander Kornienko <alexfh@google.com>
Thu, 31 Jan 2013 19:03:16 +0000 (19:03 +0000)
committerAlexander Kornienko <alexfh@google.com>
Thu, 31 Jan 2013 19:03:16 +0000 (19:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174075 91177308-0d34-0410-b5e6-96231b3b80d8

.gitignore
lib/Lex/PPExpressions.cpp

index 6c34e37f4cb610ab079d776f3e154ea91a0bf307..834dfaf12c827c47baa9c326226462c5c57bce95 100644 (file)
@@ -29,7 +29,7 @@ cscope.out
 # Directories to ignore (do not add trailing '/'s, they skip symlinks).
 #==============================================================================#
 # Clang extra user tools, which is tracked independently (clang-tools-extra).
-tools/extra
+# tools/extra [alexfh] I want this locally
 # Sphinx build products
 docs/_build
 docs/analyzer/_build
index c564653e8f712ca5b9bf3ef72ec391c1aa67e979..7ebf3e00720e660b20015cac7faac2b5c1e3011b 100644 (file)
@@ -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;