From: Chris Lattner Date: Mon, 30 Aug 2010 23:11:03 +0000 (+0000) Subject: silence a warning X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2d804c4325fcf3893386e16970b82fd0f9af1d7c;p=clang silence a warning git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112549 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Lex/Lexer.cpp b/lib/Lex/Lexer.cpp index 118b618f2a..98277a444f 100644 --- a/lib/Lex/Lexer.cpp +++ b/lib/Lex/Lexer.cpp @@ -922,7 +922,7 @@ FinishIdentifier: /// isHexaLiteral - Return true if Start points to a hex constant. /// FIXME: This isn't correct, it will mislex: -/// 0\ +/// 0\ <- escaped newline. /// x1234e+1 /// in microsoft mode (where this is supposed to be several different tokens). static inline bool isHexaLiteral(const char *Start, const char *End) {