mirror of
https://github.com/Z3Prover/z3
synced 2026-02-20 15:34:41 +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
|
|
@ -30,7 +30,7 @@ class spacer_arith_kernel {
|
|||
public:
|
||||
class plugin {
|
||||
public:
|
||||
virtual ~plugin() {}
|
||||
virtual ~plugin() = default;
|
||||
virtual bool compute_kernel(const spacer_matrix &in_matrix,
|
||||
spacer_matrix &out_kernel,
|
||||
vector<unsigned> &basics) = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue