From dec7334218c83f1b690d14a0f3bd6c36db48ad05 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 30 Aug 2010 23:11:03 +0000 Subject: [PATCH] silence a warning llvm-svn: 112549 --- clang/lib/Lex/Lexer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/Lex/Lexer.cpp b/clang/lib/Lex/Lexer.cpp index 118b618f2adc..98277a444f75 100644 --- a/clang/lib/Lex/Lexer.cpp +++ b/clang/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) {