3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-18 01:02:15 +00:00

remove a few more copy constructors, though still not enough to enable the assertion in vector

I give up for now; there are too many copies left for little return..
This commit is contained in:
Nuno Lopes 2020-06-03 20:30:21 +01:00
parent e2b2b7f82e
commit e844aef896
17 changed files with 44 additions and 95 deletions

View file

@ -17,8 +17,7 @@ Author:
Revision History:
--*/
#ifndef SCOPED_NUMERAL_H_
#define SCOPED_NUMERAL_H_
#pragma once
template<typename Manager>
class _scoped_numeral {
@ -30,6 +29,7 @@ private:
public:
_scoped_numeral(Manager & m):m_manager(m) {}
_scoped_numeral(_scoped_numeral const & n):m_manager(n.m_manager) { m().set(m_num, n.m_num); }
_scoped_numeral(_scoped_numeral &&) = default;
~_scoped_numeral() { m_manager.del(m_num); }
Manager & m() const { return m_manager; }
@ -189,5 +189,3 @@ public:
}
};
#endif