mirror of
https://github.com/Z3Prover/z3
synced 2025-08-18 09:12:16 +00:00
Remove redundant void arg.
While this was needed in ANSI C, it isn't in C++ and triggers a warning in clang-tidy when `modernize-redundant-void-arg` is enabled.
This commit is contained in:
parent
792fdb915f
commit
7bf80c66d0
11 changed files with 15 additions and 15 deletions
|
@ -907,7 +907,7 @@ public:
|
|||
m_t->operator()(in, result, mc, pc, core);
|
||||
}
|
||||
|
||||
void cleanup(void) override { m_t->cleanup(); }
|
||||
void cleanup() override { m_t->cleanup(); }
|
||||
void collect_statistics(statistics & st) const override { m_t->collect_statistics(st); }
|
||||
void reset_statistics() override { m_t->reset_statistics(); }
|
||||
void updt_params(params_ref const & p) override { m_t->updt_params(p); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue