3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-04-28 23:03:36 +00:00

Remove redundant overridden default destructors (#8191)

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:
Copilot 2026-01-14 18:41:26 +00:00 committed by Nikolaj Bjorner
parent 8266de787c
commit a3c10c68a7
14 changed files with 0 additions and 16 deletions

View file

@ -50,7 +50,6 @@ namespace smt {
public:
theory_intblast(context& ctx);
~theory_intblast() override = default;
char const* get_name() const override { return "bv-intblast"; }
smt::theory* mk_fresh(context* new_ctx) override { return alloc(theory_intblast, *new_ctx); }

View file

@ -30,7 +30,6 @@ namespace smt {
model_ref m_model;
public:
theory_sls(context& ctx);
~theory_sls() override = default;
model_ref get_model() { return m_model; }
char const* get_name() const override { return "sls"; }
smt::theory* mk_fresh(context* new_ctx) override { return alloc(theory_sls, *new_ctx); }