diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-11-25 00:20:22 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-11-25 00:20:22 +0000 |
commit | 5c4cc094981d8524904f5cf8dd599a0ee5d632bf (patch) | |
tree | 8604bd5aaa57fd3220a2fbe537f2f74c9b3461b1 /clang/lib/Lex/Lexer.cpp | |
parent | 2939a50b67d10639adde12c0c606c6f126ae269d (diff) | |
download | bcm5719-llvm-5c4cc094981d8524904f5cf8dd599a0ee5d632bf.tar.gz bcm5719-llvm-5c4cc094981d8524904f5cf8dd599a0ee5d632bf.zip |
Comment fix.
llvm-svn: 59997
Diffstat (limited to 'clang/lib/Lex/Lexer.cpp')
-rw-r--r-- | clang/lib/Lex/Lexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Lex/Lexer.cpp b/clang/lib/Lex/Lexer.cpp index 1e9789b14a7..d72c319d97c 100644 --- a/clang/lib/Lex/Lexer.cpp +++ b/clang/lib/Lex/Lexer.cpp @@ -706,7 +706,7 @@ bool Lexer::SkipWhitespace(Token &Result, const char *CurPtr) { while (isHorizontalWhitespace(Char)) Char = *++CurPtr; - // Otherwise if we something other than whitespace, we're done. + // Otherwise if we have something other than whitespace, we're done. if (Char != '\n' && Char != '\r') break; |