diff options
author | jiangg <jiangg@mail.ustc.edu.cn> | 2016-04-12 22:24:49 +0800 |
---|---|---|
committer | jiangg <jiangg@mail.ustc.edu.cn> | 2016-04-12 22:24:49 +0800 |
commit | 0df96ff595277bc3677647a9d6cbc141924cbf9e (patch) | |
tree | d40390f6046daed5b93a5f3162563732cd4ffbf4 /include | |
parent | bd63c17920114b80ebbb31b00a9ed24f34e5f5e3 (diff) | |
download | klee-0df96ff595277bc3677647a9d6cbc141924cbf9e.tar.gz |
remove synthesized `rule of three` of KInstIterator
Diffstat (limited to 'include')
-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; |