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 | 43c8be526dd5459527345c4fd1e77b8faa85a02e (patch) | |
tree | a879e1a1656335ab11dc366b3a8c7452c996c472 /clang/lib | |
parent | 0fa4fe0b9b6589900555e509f571e588891d543f (diff) | |
download | bcm5719-llvm-43c8be526dd5459527345c4fd1e77b8faa85a02e.tar.gz bcm5719-llvm-43c8be526dd5459527345c4fd1e77b8faa85a02e.zip |
comment tweak
llvm-svn: 92055
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/Lex/TokenLexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Lex/TokenLexer.cpp b/clang/lib/Lex/TokenLexer.cpp index a40bb62db46..1083f631276 100644 --- a/clang/lib/Lex/TokenLexer.cpp +++ b/clang/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(); |