mirror of
https://github.com/Z3Prover/z3
synced 2025-08-03 18:00:23 +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
|
@ -459,7 +459,7 @@ public:
|
|||
SASSERT(g->is_well_sorted());
|
||||
}
|
||||
|
||||
void cleanup(void) override {
|
||||
void cleanup() override {
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue