Skip to content

Commit

Permalink
Micro-change: moved a brace for better readability
Browse files Browse the repository at this point in the history
llvm-svn: 174075
  • Loading branch information
alexfh committed Jan 31, 2013
1 parent 8471f04 commit 2a60366
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion clang/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions clang/lib/Lex/PPExpressions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 2a60366

Please sign in to comment.