3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

remove a few default constructors

This commit is contained in:
Nuno Lopes 2024-09-23 08:17:58 +01:00
parent 22d9bfad35
commit a62fede64b
16 changed files with 16 additions and 21 deletions

View file

@ -347,7 +347,6 @@ namespace datalog {
class rule_counter : public var_counter {
public:
rule_counter(){}
void count_rule_vars(const rule * r, int coef = 1);
unsigned get_max_rule_var(const rule& r);
};

View file

@ -33,7 +33,7 @@ namespace spacer {
unsat_core_plugin(unsat_core_learner& learner);
virtual ~unsat_core_plugin() = default;
virtual void compute_partial_core(proof* step) = 0;
virtual void finalize(){};
virtual void finalize(){}
unsat_core_learner& m_ctx;
};