3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-22 20:32:05 +00:00

fix clang warnings

This commit is contained in:
Nuno Lopes 2021-02-19 10:59:22 +00:00
parent 5e034e495f
commit d6ce9cce95
6 changed files with 6 additions and 16 deletions

View file

@ -19,7 +19,6 @@ Author:
class seq_factory : public value_factory {
typedef hashtable<symbol, symbol_hash_proc, symbol_eq_proc> symbol_set;
model_core& m_model;
ast_manager& m;
seq_util u;
symbol_set m_strings;
unsigned m_next;
@ -31,7 +30,6 @@ public:
seq_factory(ast_manager & m, family_id fid, model_core& md):
value_factory(m, fid),
m_model(md),
m(m),
u(m),
m_next(0),
m_unique_delim("!"),
@ -151,4 +149,3 @@ private:
goto try_again;
}
};