[cfe-commits] r69479 - /cfe/trunk/lib/Lex/Preprocessor.cpp
Chris Lattner
sabre at nondot.org
Sat Apr 18 14:55:02 PDT 2009
Author: lattner
Date: Sat Apr 18 16:55:02 2009
New Revision: 69479
URL: http://llvm.org/viewvc/llvm-project?rev=69479&view=rev
Log:
fix typo
Modified:
cfe/trunk/lib/Lex/Preprocessor.cpp
Modified: cfe/trunk/lib/Lex/Preprocessor.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Lex/Preprocessor.cpp?rev=69479&r1=69478&r2=69479&view=diff
==============================================================================
--- cfe/trunk/lib/Lex/Preprocessor.cpp (original)
+++ cfe/trunk/lib/Lex/Preprocessor.cpp Sat Apr 18 16:55:02 2009
@@ -310,7 +310,7 @@
// 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);
More information about the cfe-commits
mailing list