[cfe-commits] r39318 - /cfe/cfe/trunk/include/clang/Parse/Scope.h

sabre at cs.uiuc.edu sabre at cs.uiuc.edu
Wed Jul 11 09:43:01 PDT 2007


Author: sabre
Date: Wed Jul 11 11:43:00 2007
New Revision: 39318

URL: http://llvm.org/viewvc/llvm-project?rev=39318&view=rev
Log:
minor cleanup

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

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

==============================================================================
--- cfe/cfe/trunk/include/clang/Parse/Scope.h (original)
+++ cfe/cfe/trunk/include/clang/Parse/Scope.h Wed Jul 11 11:43:00 2007
@@ -79,7 +79,6 @@
   /// of current declaration.  It is up to the current Action implementation to
   /// implement these semantics.
   typedef SmallPtrSet<Action::DeclTy*, 32> DeclSetTy;
-  //typedef SmallSet<Action::DeclTy*, 32> DeclSetTy;
   DeclSetTy DeclsInScope;
 public:
   Scope(Scope *Parent, unsigned ScopeFlags) {
@@ -104,7 +103,6 @@
   
   
   typedef DeclSetTy::iterator decl_iterator;
-  
   decl_iterator decl_begin() const { return DeclsInScope.begin(); }
   decl_iterator decl_end()   const { return DeclsInScope.end(); }
 





More information about the cfe-commits mailing list