3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 10:25:18 +00:00

remove debug code

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-08-01 16:32:08 +08:00
parent 7f073a0585
commit bec38f268b

View file

@ -339,8 +339,6 @@ public:
void inc_ref() { m_ref_count++; }
void dec_ref() {
SASSERT(m_ref_count > 0);
if (m_ref_count > 10000)
IF_VERBOSE(0, verbose_stream() << this << " " << m_ref_count << " " << std::this_thread::get_id() << "\n";);
if (--m_ref_count == 0) dealloc(this);
}