minor cleanup

llvm-svn: 39318
This commit is contained in:
Chris Lattner 2007-01-27 08:29:39 +00:00
parent 80c114ae7e
commit 25fe86af2b
1 changed files with 0 additions and 2 deletions

View File

@ -79,7 +79,6 @@ private:
/// 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 @@ public:
typedef DeclSetTy::iterator decl_iterator;
decl_iterator decl_begin() const { return DeclsInScope.begin(); }
decl_iterator decl_end() const { return DeclsInScope.end(); }