Skip to content

Commit

Permalink
missing override specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Nov 13, 2022
1 parent 343603f commit 0b83732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ast/converters/expr_inverter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class basic_expr_inverter : public iexpr_inverter {
*
*/

bool operator()(func_decl* f, unsigned num, expr* const* args, expr_ref& r, expr_ref& side_cond) {
bool operator()(func_decl* f, unsigned num, expr* const* args, expr_ref& r, expr_ref& side_cond) override {
SASSERT(f->get_family_id() == m.get_basic_family_id());
switch (f->get_decl_kind()) {
case OP_ITE:
Expand Down

0 comments on commit 0b83732

Please sign in to comment.