mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
fix clang warnings
This commit is contained in:
parent
5e034e495f
commit
d6ce9cce95
6 changed files with 6 additions and 16 deletions
|
@ -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:
|
|||
}
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue