3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-03 15:56:17 +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 GitHub
parent 23c531a4c1
commit 5fa321368c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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; }

View file

@ -50,8 +50,6 @@ class smaller_pattern {
public:
smaller_pattern() = default;
smaller_pattern & operator=(smaller_pattern const &) = delete;
bool operator()(unsigned num_bindings, expr * p1, expr * p2);