3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 17:14:07 +00:00

fix a few compiler warnings

This commit is contained in:
Nuno Lopes 2021-12-21 18:30:22 +00:00
parent 1d9aad6ea9
commit 94a2c91f39

View file

@ -14,7 +14,7 @@ namespace user_propagator {
class context_obj {
public:
virtual ~context_obj() {}
virtual ~context_obj() = default;
};
typedef std::function<void(void*, callback*)> final_eh_t;
@ -33,11 +33,7 @@ namespace user_propagator {
enum kind_t { OP_USER_PROPAGATE };
virtual ~plugin() {}
virtual decl_plugin* mk_fresh() { return alloc(plugin); }
family_id get_family_id() const { return m_family_id; }
decl_plugin* mk_fresh() override { return alloc(plugin); }
sort* mk_sort(decl_kind k, unsigned num_parameters, parameter const* parameters) override {
UNREACHABLE();
@ -45,7 +41,7 @@ namespace user_propagator {
}
func_decl* mk_func_decl(decl_kind k, unsigned num_parameters, parameter const* parameters,
unsigned arity, sort* const* domain, sort* range) {
unsigned arity, sort* const* domain, sort* range) override {
UNREACHABLE();
return nullptr;
}