[cfe-commits] r59997 - /cfe/trunk/lib/Lex/Lexer.cpp
Daniel Dunbar
daniel at zuster.org
Mon Nov 24 16:20:22 PST 2008
Author: ddunbar
Date: Mon Nov 24 18:20:22 2008
New Revision: 59997
URL: http://llvm.org/viewvc/llvm-project?rev=59997&view=rev
Log:
Comment fix.
Modified:
cfe/trunk/lib/Lex/Lexer.cpp
Modified: cfe/trunk/lib/Lex/Lexer.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Lex/Lexer.cpp?rev=59997&r1=59996&r2=59997&view=diff
==============================================================================
--- cfe/trunk/lib/Lex/Lexer.cpp (original)
+++ cfe/trunk/lib/Lex/Lexer.cpp Mon Nov 24 18:20:22 2008
@@ -706,7 +706,7 @@
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;
More information about the cfe-commits
mailing list