mirror of
https://github.com/Z3Prover/z3
synced 2025-08-21 02:30:23 +00:00
Use override
more. (#7059)
This commit is contained in:
parent
f6e69d43a3
commit
e90a844508
4 changed files with 11 additions and 11 deletions
|
@ -90,7 +90,7 @@ class model_reconstruction_trail {
|
|||
struct undo_model_var : public trail {
|
||||
model_reconstruction_trail& s;
|
||||
undo_model_var(model_reconstruction_trail& s) : s(s) {}
|
||||
virtual void undo() {
|
||||
void undo() override {
|
||||
s.m_model_vars.mark(s.m_model_vars_trail.back(), false);
|
||||
s.m_model_vars_trail.pop_back();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue