mirror of
https://github.com/Z3Prover/z3
synced 2026-07-04 22:36:10 +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
a0bca2b71a
commit
7377d28c30
36 changed files with 34 additions and 55 deletions
|
|
@ -38,7 +38,7 @@ namespace sls {
|
|||
|
||||
public:
|
||||
bv_plugin(context& ctx);
|
||||
~bv_plugin() override {}
|
||||
~bv_plugin() override = default;
|
||||
void register_term(expr* e) override;
|
||||
expr_ref get_value(expr* e) override;
|
||||
void start_propagation() override;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue