3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-22 13:53:39 +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

@ -29,7 +29,7 @@ namespace smt {
void mark_as_relevant(relevancy_propagator & rp, expr * n);
void mark_args_as_relevant(relevancy_propagator & rp, app * n);
public:
virtual ~relevancy_eh() {}
virtual ~relevancy_eh() = default;
/**
\brief This method is invoked when n is marked as relevant.
*/
@ -87,7 +87,7 @@ namespace smt {
context & m_context;
public:
relevancy_propagator(context & ctx);
virtual ~relevancy_propagator() {}
virtual ~relevancy_propagator() = default;
context & get_context() { return m_context; }