From 1661d717563d6a27dec3da69deba2b2efaa45802 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Mon, 8 Aug 2011 06:10:39 +0000 Subject: [PATCH] Fix comment (test commit) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@137039 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Lex/LiteralSupport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.50.1