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

unused variable warnings

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-04-26 23:21:48 -07:00
parent 5434f3e31d
commit d818233063
4 changed files with 7 additions and 5 deletions

View file

@ -32,8 +32,9 @@ update m_offset_equalities to contain.
r1 |-> [r2 |-> val]
*/
seq_offset_eq::seq_offset_eq(theory& th, ast_manager& m):
th(th), m(m), seq(m), a(m), m_propagation_level(-1) {
seq_offset_eq::seq_offset_eq(theory& th, ast_manager& _m):
th(th), m(_m), seq(m), a(m), m_propagation_level(-1) {
(void)m;
}
bool seq_offset_eq::match_x_minus_y(expr* e, expr*& x, expr*& y) const {