mirror of
https://github.com/Z3Prover/z3
synced 2026-02-17 22:24:20 +00:00
build fixes
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d65c0fbcd6
commit
aaaa32b4a0
2 changed files with 33 additions and 0 deletions
|
|
@ -61,6 +61,10 @@ public:
|
|||
key_data() {}
|
||||
key_data(Key *key) : m_key(key) {}
|
||||
key_data(Key *k, Value const &v) : m_key(k), m_value(v) {}
|
||||
key_data(key_data &&kd) noexcept = default;
|
||||
key_data(key_data const &kd) noexcept = default;
|
||||
key_data &operator=(key_data const &kd) = default;
|
||||
key_data &operator=(key_data &&kd) = default;
|
||||
Value const & get_value() const { return m_value; }
|
||||
Key & get_key () const { return *m_key; }
|
||||
unsigned hash() const { return m_key->hash(); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue