mirror of
https://github.com/Z3Prover/z3
synced 2026-02-25 09:41:19 +00:00
Use = default for virtual constructors.
This commit is contained in:
parent
aa0719abae
commit
5014b1a34d
85 changed files with 106 additions and 107 deletions
|
|
@ -116,7 +116,7 @@ namespace nlarith {
|
|||
|
||||
class eval {
|
||||
public:
|
||||
virtual ~eval() {}
|
||||
virtual ~eval() = default;
|
||||
virtual lbool operator()(app* a) = 0;
|
||||
};
|
||||
|
||||
|
|
@ -124,7 +124,7 @@ namespace nlarith {
|
|||
|
||||
class branch {
|
||||
public:
|
||||
virtual ~branch() {}
|
||||
virtual ~branch() = default;
|
||||
virtual app* get_constraint() = 0;
|
||||
virtual void get_updates(ptr_vector<app>& atoms, svector<atom_update>& updates) = 0;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue