summaryrefslogtreecommitdiff
path: root/.clang-tidy
diff options
context:
space:
mode:
authorEd Tanous <edtanous@google.com>2023-07-06 22:14:44 +0300
committerEd Tanous <ed@tanous.net>2023-07-10 22:53:34 +0300
commitd9fcfcc174eb0e195105f3ba2e95456db29a4132 (patch)
tree7042174e240055a0a6c293bf09cbfe6556704069 /.clang-tidy
parentdfb2b40839d6cd6b96e4d891c46d964c8f2c930b (diff)
downloadbmcweb-d9fcfcc174eb0e195105f3ba2e95456db29a4132.tar.xz
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>
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy1
1 files changed, 1 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 4e09243ee4..0d22df70ef 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -238,6 +238,7 @@ modernize-loop-convert,
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,