aboutsummaryrefslogtreecommitdiff
path: root/lib/Lex/Preprocessor.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-04-18 21:55:02 +0000
committerChris Lattner <sabre@nondot.org>2009-04-18 21:55:02 +0000
commit390c8cea4a35d94fe3ff88fa22722aeecdf2b648 (patch)
tree1d4dbcb4e5008d0ace153e25b4376b6d94b28652 /lib/Lex/Preprocessor.cpp
parent07e775d5a1d5262a9cfe1ff333af713535b8cbab (diff)
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69479 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/Preprocessor.cpp')
-rw-r--r--lib/Lex/Preprocessor.cpp2
1 files changed, 1 insertions, 1 deletions
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);