mirror of
https://github.com/Z3Prover/z3
synced 2026-05-24 19:06:21 +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
|
|
@ -49,7 +49,7 @@ namespace smt {
|
|||
unsigned m_in_region:1; // true if the object was allocated in a region.
|
||||
public:
|
||||
justification(bool in_region = true):m_mark(false), m_in_region(in_region) {}
|
||||
virtual ~justification() {}
|
||||
virtual ~justification() = default;
|
||||
|
||||
/**
|
||||
\brief This method should return true if the method del_eh needs to be invoked
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue