3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 03:15:50 +00:00

mute some compiler warnings

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-02-03 15:42:06 -08:00
parent 9425c419ad
commit bc70282a18
3 changed files with 6 additions and 10 deletions

View file

@ -525,9 +525,10 @@ namespace euf {
m_offsets.reserve(n->get_root_id() + 1);
m_offsets[n->get_root_id()].reset();
}
for (auto const& off : m_offsets) {
SASSERT(off.empty());
}
DEBUG_CODE(
for (auto const& off : m_offsets) {
VERIFY(off.empty());
});
m_jtodo.reset();
return;
}