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

fix build

This commit is contained in:
Nikolaj Bjorner 2025-01-27 10:52:21 -08:00
parent 15ee879602
commit 63f9fdaf3e

View file

@ -40,9 +40,9 @@ namespace sls {
if (m_g->inconsistent()) {
resolve_conflict();
return false;
}
return !m_g->inconsistent();
}
#endif
return !m_g->inconsistent();
}