Skip to content

Commit

Permalink
missing override specifiers per #4654
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Aug 20, 2020
1 parent eef05e0 commit 7708874
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/smt/smt_solver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ namespace {
return m_context.user_propagate_register(e);
}

void user_propagate_consequence(unsigned sz, unsigned const* ids, expr* conseq) {
void user_propagate_consequence(unsigned sz, unsigned const* ids, expr* conseq) override {
m_context.user_propagate_consequence(sz, ids, conseq);
}

Expand Down
2 changes: 1 addition & 1 deletion src/smt/user_propagator.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,6 @@ namespace smt {
bool include_func_interp(func_decl* f) override { return false; }
bool can_propagate() override;
void propagate() override;
void display(std::ostream& out) const {}
void display(std::ostream& out) const override {}
};
};

0 comments on commit 7708874

Please sign in to comment.