diff options
author | Craig Topper <craig.topper@gmail.com> | 2011-08-08 06:10:39 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2011-08-08 06:10:39 +0000 |
commit | 1661d717563d6a27dec3da69deba2b2efaa45802 (patch) | |
tree | 98170c417bcaab213524cdd220b2ace7d43c9a44 | |
parent | f66a3ea8595d44843f43b8c4b0825b1f8ceeda78 (diff) |
Fix comment (test commit)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@137039 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Lex/LiteralSupport.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Lex/LiteralSupport.cpp b/lib/Lex/LiteralSupport.cpp index 82493408e6..a40908bd9f 100644 --- a/lib/Lex/LiteralSupport.cpp +++ b/lib/Lex/LiteralSupport.cpp @@ -964,7 +964,7 @@ void StringLiteralParser::init(const Token *StringToks, unsigned NumStringToks){ const char *ThisTokEnd = ThisTokBuf+ThisTokLen-1; // Skip end quote. // TODO: Input character set mapping support. - // Skip L marker for wide strings. + // Skip marker for wide or unicode strings. if (ThisTokBuf[0] == 'L' || ThisTokBuf[0] == 'u' || ThisTokBuf[0] == 'U') { ++ThisTokBuf; // Skip 8 of u8 marker for utf8 strings. |