Remove redundant void argument lists
Using clang-tidy's `modernize-redundant-void-arg`. https://clang.llvm.org/extra/clang-tidy/checks/modernize-redundant-void-arg.html
This commit is contained in:
parent
dcd1151d77
commit
a1aaed5a84
17 changed files with 33 additions and 33 deletions
|
|
@ -1129,7 +1129,7 @@ bool test_35() {
|
|||
return state;
|
||||
}
|
||||
|
||||
typedef bool (*TestFunc)(void);
|
||||
typedef bool (*TestFunc)();
|
||||
|
||||
TestFunc test_funcs[] = {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue