3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-19 19:02:02 +00:00

mark destructors virtual

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-02-07 07:55:17 +01:00
parent 064c9faf11
commit c9ffe7417c
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@ namespace sat {
reslimit& m_rlimit;
public:
solver_core(reslimit& l) : m_rlimit(l) {}
~solver_core() {}
virtual ~solver_core() {}
virtual void pop_to_base_level() {}
virtual bool at_base_lvl() const { return true; }