3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +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

@ -1387,7 +1387,7 @@ namespace smt {
void flush();
config_mode get_config_mode(bool use_static_features) const;
virtual void setup_context(bool use_static_features);
void setup_components(void);
void setup_components();
void pop_to_base_lvl();
void pop_to_search_lvl();
#ifdef Z3DEBUG