mirror of
https://github.com/Z3Prover/z3
synced 2025-04-30 04:15:51 +00:00
fix compiler warnings
This commit is contained in:
parent
8ad480ab59
commit
a7f018aa03
6 changed files with 4 additions and 16 deletions
|
@ -23,7 +23,6 @@ Author:
|
|||
#include "sat/smt/arith_proof_checker.h"
|
||||
#include "sat/smt/q_proof_checker.h"
|
||||
#include "sat/smt/tseitin_proof_checker.h"
|
||||
#include <iostream>
|
||||
|
||||
namespace euf {
|
||||
|
||||
|
@ -121,8 +120,6 @@ namespace euf {
|
|||
public:
|
||||
eq_proof_checker(ast_manager& m): m(m) {}
|
||||
|
||||
~eq_proof_checker() override {}
|
||||
|
||||
expr_ref_vector clause(app* jst) override {
|
||||
expr_ref_vector result(m);
|
||||
for (expr* arg : *jst)
|
||||
|
@ -213,8 +210,6 @@ namespace euf {
|
|||
|
||||
public:
|
||||
res_proof_checker(ast_manager& m, proof_checker& pc): m(m), pc(pc) {}
|
||||
|
||||
~res_proof_checker() override {}
|
||||
|
||||
bool check(app* jst) override {
|
||||
if (jst->get_num_args() != 3)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue