From: Craig Topper Date: Mon, 8 Aug 2011 06:10:39 +0000 (+0000) Subject: Fix comment (test commit) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1661d717563d6a27dec3da69deba2b2efaa45802;p=clang Fix comment (test commit) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@137039 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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.