mirror of
https://github.com/Z3Prover/z3
synced 2025-06-12 09:03:26 +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
|
@ -91,7 +91,7 @@ public:
|
|||
void operator()(var * n) { m_bitset.set(n->get_idx(), true); }
|
||||
void operator()(quantifier * n) {}
|
||||
void operator()(app * n) {}
|
||||
bool all_used(void) {
|
||||
bool all_used() {
|
||||
for (unsigned i = 0; i < m_bitset.size() ; i++)
|
||||
if (!m_bitset.get(i))
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue