3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-22 08:17:37 +00:00

Remove redundant non-virtual destructors with = default (#8462)

* Initial plan

* Remove 6 non-virtual destructors with no code (= default)

Co-authored-by: nunoplopes <2998477+nunoplopes@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: nunoplopes <2998477+nunoplopes@users.noreply.github.com>
This commit is contained in:
Copilot 2026-02-01 15:22:58 -08:00 committed by Nikolaj Bjorner
parent d4e0a7fe21
commit 31e4945922
6 changed files with 0 additions and 7 deletions

View file

@ -99,7 +99,6 @@ public:
lar_term& operator=(const lar_term& other) = default;
// move assignment operator
lar_term& operator=(lar_term&& other) noexcept = default;
~lar_term() = default;
lar_term(const lar_term& a) {
for (auto const& p : a) {
add_monomial(p.coeff(), p.var());