diff options
author | Chris Lattner <sabre@nondot.org> | 2010-08-30 23:11:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-08-30 23:11:03 +0000 |
commit | 2d804c4325fcf3893386e16970b82fd0f9af1d7c (patch) | |
tree | 44896f39de582517f4ef2528131c6eda1f3dd3e6 /lib/Lex/Lexer.cpp | |
parent | 77535dfde258765c056ef4c6786ef56cc48f0c76 (diff) |
silence a warning
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112549 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/Lexer.cpp')
-rw-r--r-- | lib/Lex/Lexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |