mirror of
https://github.com/Z3Prover/z3
synced 2025-08-19 01:32:17 +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
|
@ -29,7 +29,7 @@ protected:
|
|||
substitution & m_subst;
|
||||
public:
|
||||
st_visitor(substitution & s):m_subst(s) {}
|
||||
virtual ~st_visitor() {}
|
||||
virtual ~st_visitor() = default;
|
||||
substitution & get_substitution() { return m_subst; }
|
||||
virtual bool operator()(expr * e) { return true; }
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue