3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-10 01:05:47 +00:00

Use override rather than virtual.

This commit is contained in:
Bruce Mitchener 2018-02-09 21:15:02 +07:00
parent 2b847478a2
commit b7d1753843
138 changed files with 1621 additions and 1624 deletions

View file

@ -31,18 +31,18 @@ public:
extension_model_converter(ast_manager & m):m_vars(m), m_defs(m) {
}
virtual ~extension_model_converter();
~extension_model_converter() override;
ast_manager & m() const { return m_vars.get_manager(); }
virtual void operator()(model_ref & md, unsigned goal_idx);
void operator()(model_ref & md, unsigned goal_idx) override;
virtual void display(std::ostream & out);
void display(std::ostream & out) override;
// register a variable that was eliminated
void insert(func_decl * v, expr * def);
virtual model_converter * translate(ast_translation & translator);
model_converter * translate(ast_translation & translator) override;
};