3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-30 12:28:53 +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

@ -274,7 +274,7 @@ namespace datalog {
key_indexer(unsigned key_len, const unsigned * key_cols)
: m_key_cols(key_len, key_cols) {}
virtual ~key_indexer() {}
virtual ~key_indexer() = default;
virtual void update(const sparse_table & t) {}