diff options
author | Chris Lattner <sabre@nondot.org> | 2009-12-23 21:29:53 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-12-23 21:29:53 +0000 |
commit | 917f14387470cc98b8ff90342f5307bc921234fb (patch) | |
tree | 92f8cfa63619d6f112aa663f8540cb78c9b91267 /lib/Lex/TokenLexer.cpp | |
parent | 73e437bbe7e9631ad9055b1d50f4ae8564efbdf3 (diff) |
comment tweak
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@92055 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/TokenLexer.cpp')
-rw-r--r-- | lib/Lex/TokenLexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Lex/TokenLexer.cpp b/lib/Lex/TokenLexer.cpp index a40bb62db4..1083f63127 100644 --- a/lib/Lex/TokenLexer.cpp +++ b/lib/Lex/TokenLexer.cpp @@ -414,7 +414,7 @@ bool TokenLexer::PasteTokens(Token &Tok) { ResultTokTmp.startToken(); // Claim that the tmp token is a string_literal so that we can get the - // character pointer back from CreateString. + // character pointer back from CreateString in getLiteralData(). ResultTokTmp.setKind(tok::string_literal); PP.CreateString(&Buffer[0], Buffer.size(), ResultTokTmp); SourceLocation ResultTokLoc = ResultTokTmp.getLocation(); |