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

build warning

This commit is contained in:
Nikolaj Bjorner 2020-05-02 15:51:12 -07:00
parent 0f1815ca04
commit 6e4a059c75

View file

@ -61,7 +61,7 @@ void num_occurs::process(expr * t, expr_fast_mark1 & visited) {
void num_occurs::validate() { void num_occurs::validate() {
for (auto & kv : m_num_occurs) { for (auto & kv : m_num_occurs) {
SASSERT(0 < kv.m_key->get_ref_count()); VERIFY(0 < kv.m_key->get_ref_count());
} }
} }