3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

fix a few more warnings

This commit is contained in:
Nuno Lopes 2021-02-19 12:16:05 +00:00
parent d6ce9cce95
commit e773e1e78d
4 changed files with 6 additions and 9 deletions

View file

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