[cfe-commits] r38834 - /cfe/cfe/trunk/include/clang/Parse/Parser.h

sabre at cs.uiuc.edu sabre at cs.uiuc.edu
Wed Jul 11 09:25:02 PDT 2007


Author: sabre
Date: Wed Jul 11 11:25:02 2007
New Revision: 38834

URL: http://llvm.org/viewvc/llvm-project?rev=38834&view=rev
Log:
MAke the default be to stop at ;'s

Modified:
    cfe/cfe/trunk/include/clang/Parse/Parser.h

Modified: cfe/cfe/trunk/include/clang/Parse/Parser.h
URL: http://llvm.org/viewvc/llvm-project/cfe/cfe/trunk/include/clang/Parse/Parser.h?rev=38834&r1=38833&r2=38834&view=diff

==============================================================================
--- cfe/cfe/trunk/include/clang/Parse/Parser.h (original)
+++ cfe/cfe/trunk/include/clang/Parse/Parser.h Wed Jul 11 11:25:02 2007
@@ -147,7 +147,7 @@
   /// 
   /// If SkipUntil finds the specified token, it returns true, otherwise it
   /// returns false.  
-  bool SkipUntil(tok::TokenKind T, bool StopAtSemi = false,
+  bool SkipUntil(tok::TokenKind T, bool StopAtSemi = true,
                  bool DontConsume = false);
     
   //===--------------------------------------------------------------------===//





More information about the cfe-commits mailing list