about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
authorjiangg <jiangg@mail.ustc.edu.cn>2016-04-12 22:24:49 +0800
committerjiangg <jiangg@mail.ustc.edu.cn>2016-04-12 22:24:49 +0800
commit0df96ff595277bc3677647a9d6cbc141924cbf9e (patch)
treed40390f6046daed5b93a5f3162563732cd4ffbf4 /include
parentbd63c17920114b80ebbb31b00a9ed24f34e5f5e3 (diff)
downloadklee-0df96ff595277bc3677647a9d6cbc141924cbf9e.tar.gz
remove synthesized `rule of three` of KInstIterator
Diffstat (limited to 'include')
-rw-r--r--include/klee/Internal/Module/KInstIterator.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/klee/Internal/Module/KInstIterator.h b/include/klee/Internal/Module/KInstIterator.h
index 88efed38..736c4b4d 100644
--- a/include/klee/Internal/Module/KInstIterator.h
+++ b/include/klee/Internal/Module/KInstIterator.h
@@ -19,13 +19,6 @@ namespace klee {
   public:
     KInstIterator() : it(0) {}
     KInstIterator(KInstruction **_it) : it(_it) {}
-    KInstIterator(const KInstIterator &b) : it(b.it) {}
-    ~KInstIterator() {}
-
-    KInstIterator &operator=(const KInstIterator &b) {
-      it = b.it;
-      return *this;
-    }
 
     bool operator==(const KInstIterator &b) const {
       return it==b.it;