From: Chris Lattner Date: Sat, 18 Apr 2009 21:55:02 +0000 (+0000) Subject: fix typo X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=390c8cea4a35d94fe3ff88fa22722aeecdf2b648;p=clang fix typo git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69479 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Lex/Preprocessor.cpp b/lib/Lex/Preprocessor.cpp index 111409ff78..70294417d1 100644 --- a/lib/Lex/Preprocessor.cpp +++ b/lib/Lex/Preprocessor.cpp @@ -310,7 +310,7 @@ SourceLocation Preprocessor::AdvanceToTokenCharacter(SourceLocation TokStart, // If we have a character that may be a trigraph or escaped newline, use a // lexer to parse it correctly. if (CharNo != 0) { - // Skip over characters the remaining characters. + // Skip over the remaining characters. for (; CharNo; --CharNo) { unsigned Size; Lexer::getCharAndSizeNoWarn(TokPtr, Size, Features);