3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-05-01 08:03:45 +00:00

Remove redundant explicit default constructors (#8470)

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
This commit is contained in:
Copilot 2026-02-02 08:45:08 +00:00 committed by Nikolaj Bjorner
parent 17c8958d70
commit 9758b7646f
2 changed files with 0 additions and 3 deletions

View file

@ -25,7 +25,6 @@ Notes:
class converter {
unsigned m_ref_count = 0;
public:
converter() = default;
virtual ~converter() = default;
void inc_ref() { ++m_ref_count; }