3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-06 22:36:03 +00:00

Merge pull request #1860 from waywardmonkeys/modernize-use-override

Use 'override' where possible.
This commit is contained in:
Nikolaj Bjorner 2018-10-01 20:43:56 -07:00 committed by GitHub
commit 7082d85115
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 123 additions and 123 deletions

View file

@ -147,7 +147,7 @@ class theory_lra::imp {
imp& m_imp;
public:
resource_limit(imp& i): m_imp(i) { }
virtual bool get_cancel_flag() { return m_imp.m.canceled(); }
bool get_cancel_flag() override { return m_imp.m.canceled(); }
};