]> granicus.if.org Git - clang/commitdiff
silence a warning
authorChris Lattner <sabre@nondot.org>
Mon, 30 Aug 2010 23:11:03 +0000 (23:11 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 30 Aug 2010 23:11:03 +0000 (23:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112549 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Lex/Lexer.cpp

index 118b618f2adc9656cd9ecee639cf4bce71083784..98277a444f75bf33d9fc3067093c0037b0fe9de8 100644 (file)
@@ -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) {