3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 02:45:51 +00:00

fix warnings for unused variables

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-05-17 13:54:22 -07:00
parent ec565ae7a0
commit 96e157e201
38 changed files with 180 additions and 184 deletions

View file

@ -1899,8 +1899,7 @@ namespace qe {
// The variable v is to be assigned a value in a range.
//
void constrain_assignment() {
expr* fml = m_current->fml();
SASSERT(fml);
SASSERT(m_current->fml());
rational k;
app* x;
if (!find_min_weight(x, k)) {