3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-19 10:52:02 +00:00

fix $4457

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-06-02 18:31:28 -07:00
parent f645ef7677
commit d3e20d41b2
3 changed files with 3 additions and 0 deletions

View file

@ -235,6 +235,7 @@ interval::interval(interval const & other):
m_upper_open(other.m_upper_open),
m_lower_dep(other.m_lower_dep),
m_upper_dep(other.m_upper_dep) {
std::cout << "copy " << m_lower << " " << m_upper << "\n";
}
interval & interval::operator=(interval const & other) {