Implement operator= for ExplodedNodeSet.

llvm-svn: 76790
This commit is contained in:
Ted Kremenek 2009-07-22 21:38:15 +00:00
parent 5899dda08c
commit 0af7e85bf7
1 changed files with 5 additions and 0 deletions

View File

@ -503,6 +503,11 @@ public:
if (N && !static_cast<ExplodedNodeImpl*>(N)->isSink()) Impl.insert(N);
}
ExplodedNodeSet& operator=(const ExplodedNodeSet &X) {
Impl = X.Impl;
return *this;
}
typedef typename ImplTy::iterator iterator;
typedef typename ImplTy::const_iterator const_iterator;