Tidy enable modernize-redundant-void-arg
We have places where we explicitly set something to the pattern of
method(void)
This is no longer necessary to declare, so fix the places where we do
it to make the codebase consistent, and enable the check.
Tested: Clang-tidy passes.
Change-Id: I3ef03fc07d65b656fecbcfea638dd12ba95f22e0
Signed-off-by: Ed Tanous <edtanous@google.com>
diff --git a/.clang-tidy b/.clang-tidy
index 4e09243..0d22df7 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -238,6 +238,7 @@
modernize-make-shared,
modernize-make-unique,
modernize-raw-string-literal,
+modernize-redundant-void-arg,
modernize-replace-auto-ptr,
modernize-replace-random-shuffle,
modernize-return-braced-init-list,