diff options
author | Anna Zaks <ganna@apple.com> | 2011-10-18 23:06:08 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2011-10-18 23:06:08 +0000 |
commit | 1ee9f11631166fa1531b4eff6722a3af9bdb8854 (patch) | |
tree | ffdf6d5777c145c191d019f94e5bf5f4602e5603 | |
parent | ce5e97efddd3045b9ef77ce358438805873f6fd8 (diff) | |
download | bcm5719-llvm-1ee9f11631166fa1531b4eff6722a3af9bdb8854.tar.gz bcm5719-llvm-1ee9f11631166fa1531b4eff6722a3af9bdb8854.zip |
[analyzer] Remove redundant assignment operator.
llvm-svn: 142445
-rw-r--r-- | clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h index 070f52e0c70..43700f8f3f4 100644 --- a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h +++ b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h @@ -381,11 +381,6 @@ public: if (N && !static_cast<ExplodedNode*>(N)->isSink()) Impl.insert(N); } - ExplodedNodeSet &operator=(const ExplodedNodeSet &X) { - Impl = X.Impl; - return *this; - } - typedef ImplTy::iterator iterator; typedef ImplTy::const_iterator const_iterator; |