3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-02 13:27:01 +00:00

fix compiler warnings

This commit is contained in:
Nuno Lopes 2022-10-12 10:02:21 +01:00
parent 8ad480ab59
commit a7f018aa03
6 changed files with 4 additions and 16 deletions

View file

@ -60,7 +60,6 @@ namespace euf {
symbol m_rule;
public:
smt_proof_checker_plugin(ast_manager& m, symbol const& n): m(m), m_rule(n) {}
~smt_proof_checker_plugin() override {}
bool check(app* jst) override { return false; }
expr_ref_vector clause(app* jst) override;
void register_plugins(proof_checker& pc) override { pc.register_plugin(m_rule, this); }