mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
Use override
more. (#7059)
This commit is contained in:
parent
f6e69d43a3
commit
e90a844508
4 changed files with 11 additions and 11 deletions
|
@ -1490,7 +1490,7 @@ namespace lp {
|
|||
struct lar_solver::undo_add_column : public trail {
|
||||
lar_solver& s;
|
||||
undo_add_column(lar_solver& s) : s(s) {}
|
||||
virtual void undo() {
|
||||
void undo() override {
|
||||
s.remove_last_column_from_tableau();
|
||||
s.m_columns_to_ul_pairs.pop_back();
|
||||
unsigned j = s.m_columns_to_ul_pairs.size();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue