3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-28 17:08:45 +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

@ -20,9 +20,8 @@ Revision History:
#include "model/model_core.h"
#include "model/value_factory.h"
class char_factory : public value_factory {
class char_factory final : public value_factory {
model_core& m_model;
ast_manager& m;
seq_util u;
uint_set m_chars;
unsigned m_next { 'A' };
@ -33,7 +32,6 @@ public:
char_factory(ast_manager & m, family_id fid, model_core& md):
value_factory(m, fid),
m_model(md),
m(m),
u(m),
m_trail(m)
{
@ -76,4 +74,3 @@ public:
}
};

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;
}
};