3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

Use = default for virtual constructors.

This commit is contained in:
Bruce Mitchener 2022-08-04 13:21:07 +07:00 committed by Nikolaj Bjorner
parent aa0719abae
commit 5014b1a34d
85 changed files with 106 additions and 107 deletions

View file

@ -20,7 +20,7 @@ Author:
class quantifier2macro_infos {
public:
virtual ~quantifier2macro_infos() {}
virtual ~quantifier2macro_infos() = default;
virtual quantifier_macro_info* operator()(quantifier* q) = 0;
};
@ -48,7 +48,7 @@ public:
m_model(nullptr) {
}
virtual ~base_macro_solver() {}
virtual ~base_macro_solver() = default;
/**
\brief Try to satisfy quantifiers in qs by using macro definitions.