about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorMartinNowack <martin.nowack@gmail.com>2016-04-18 17:15:31 +0200
committerMartinNowack <martin.nowack@gmail.com>2016-04-18 17:15:31 +0200
commitce8d238649353965459951b0f8213e0e488c70df (patch)
tree10068c35def426bfcb22a2a993d973a9fef84d78
parentc2d9fc9accea01a2f65d81bb0998fa0b3a60adaa (diff)
parent0df96ff595277bc3677647a9d6cbc141924cbf9e (diff)
downloadklee-ce8d238649353965459951b0f8213e0e488c70df.tar.gz
Merge pull request #374 from Justme0/optimize_kinstiterator
remove synthesized `rule of three` of KInstIterator
-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;