3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-24 09:30:31 +00:00

remove a few more useless constructors

This commit is contained in:
Nuno Lopes 2026-06-16 12:18:04 +01:00
parent 82777c0092
commit 3fed9eadae
3 changed files with 12 additions and 32 deletions

View file

@ -60,19 +60,14 @@ protected:
class entry;
public:
class key_data {
Key1 * m_key1;
Key2 * m_key2;
Key3 * m_key3;
Key1 * m_key1 = nullptr;
Key2 * m_key2 = nullptr;
Key3 * m_key3 = nullptr;
Value m_value;
unsigned m_hash;
unsigned m_hash = 0;
friend class entry;
public:
key_data():
m_key1(nullptr),
m_key2(nullptr),
m_key3(nullptr),
m_hash(0) {
}
key_data() = default;
key_data(Key1 * k1, Key2 * k2, Key3 * k3):
m_key1(k1),
m_key2(k2),