From 01e4b243c9d4ebfd0f6d0768251ed3f2922afdf9 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 24 Jul 2007 17:03:04 +0000 Subject: [PATCH] Fix a comment, patch by Kevin Andre! llvm-svn: 40466 --- clang/Parse/Parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/Parse/Parser.cpp b/clang/Parse/Parser.cpp index bc7bd9978228..3a5885af33ea 100644 --- a/clang/Parse/Parser.cpp +++ b/clang/Parse/Parser.cpp @@ -84,7 +84,7 @@ bool Parser::ExpectAndConsume(tok::TokenKind ExpectedTok, unsigned DiagID, //===----------------------------------------------------------------------===// /// SkipUntil - Read tokens until we get to the specified token, then consume -/// it (unless DontConsume is false). Because we cannot guarantee that the +/// it (unless DontConsume is true). Because we cannot guarantee that the /// token will ever occur, this skips to the next token, or to some likely /// good stopping point. If StopAtSemi is true, skipping will stop at a ';' /// character. -- GitLab