From 4468816d3223ff8efa604388c5967e34cf7fe354 Mon Sep 17 00:00:00 2001 From: Nikolaj Bjorner <nbjorner@microsoft.com> Date: Sat, 29 Apr 2017 19:00:15 -0700 Subject: [PATCH] fix unused variables Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com> --- src/smt/smt_context_inv.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/smt/smt_context_inv.cpp b/src/smt/smt_context_inv.cpp index f63e07b57..e6551b8da 100644 --- a/src/smt/smt_context_inv.cpp +++ b/src/smt/smt_context_inv.cpp @@ -405,7 +405,6 @@ namespace smt { bool context::validate_justification(bool_var v, bool_var_data const& d, b_justification const& j) { if (j.get_kind() == b_justification::CLAUSE && v != true_bool_var) { clause* cls = j.get_clause(); - unsigned num_lits = cls->get_num_literals(); literal l = cls->get_literal(0); if (l.var() != v) { l = cls->get_literal(1);