diff options
author | MartinNowack <martin.nowack@gmail.com> | 2016-04-18 17:15:31 +0200 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2016-04-18 17:15:31 +0200 |
commit | ce8d238649353965459951b0f8213e0e488c70df (patch) | |
tree | 10068c35def426bfcb22a2a993d973a9fef84d78 | |
parent | c2d9fc9accea01a2f65d81bb0998fa0b3a60adaa (diff) | |
parent | 0df96ff595277bc3677647a9d6cbc141924cbf9e (diff) | |
download | klee-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.h | 7 |
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; |