3
0
Fork 0
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:
Bruce Mitchener 2018-02-13 18:51:47 +07:00
parent 792fdb915f
commit 7bf80c66d0
11 changed files with 15 additions and 15 deletions

View file

@ -459,7 +459,7 @@ public:
SASSERT(g->is_well_sorted());
}
void cleanup(void) override {
void cleanup() override {
}
};