mirror of
https://github.com/Z3Prover/z3
synced 2026-02-19 23:14:40 +00:00
Replace empty destructors with = default for compiler optimization (#8189)
* Initial plan * Replace empty destructors with = default Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
parent
e29289ad97
commit
a6c1d32074
36 changed files with 34 additions and 55 deletions
|
|
@ -12,9 +12,6 @@ namespace mbp {
|
|||
euf_project_plugin::euf_project_plugin(ast_manager& m): project_plugin(m) {
|
||||
}
|
||||
|
||||
euf_project_plugin::~euf_project_plugin() {
|
||||
}
|
||||
|
||||
bool euf_project_plugin::project1(model& model, app* var, app_ref_vector& vars, expr_ref_vector& lits) {
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ namespace mbp {
|
|||
bool try_unify(term_graph& g, app* a, expr_ref_vector const& partitions, app_ref_vector& vars, vector<def>& defs);
|
||||
public:
|
||||
euf_project_plugin(ast_manager& m);
|
||||
~euf_project_plugin() override;
|
||||
~euf_project_plugin() override = default;
|
||||
|
||||
bool project1(model& model, app* var, app_ref_vector& vars, expr_ref_vector& lits) override;
|
||||
bool solve(model& model, app_ref_vector& vars, expr_ref_vector& lits) override { return false; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue