summaryrefslogtreecommitdiff
path: root/.clang-tidy
diff options
context:
space:
mode:
authorEd Tanous <ed@tanous.net>2024-03-27 23:34:40 +0300
committerEd Tanous <ed@tanous.net>2024-04-01 20:09:41 +0300
commit9de65b34ec9f8e813dad70b351672b64c1f73cd5 (patch)
tree4b8c9b26e88a70ef9a56eeef4633d4ecba1d3091 /.clang-tidy
parent4da0490bc07a458ad3fc7d586c7eabf6053c572f (diff)
downloadbmcweb-9de65b34ec9f8e813dad70b351672b64c1f73cd5.tar.xz
Fix redundant inline operators
inline is not required on member methods. Clang-tidy has a check for this. Enable the check and fix the two bad usages. Tested: Code compiles. Change-Id: I3115b7c0c4005e1082e0005b818fbe6569511f49 Signed-off-by: Ed Tanous <ed@tanous.net>
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 442c545c8f..7cb9ecdd8e 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -329,6 +329,7 @@ readability-redundant-access-specifiers,
readability-redundant-control-flow,
readability-redundant-declaration,
readability-redundant-function-ptr-dereference,
+readability-redundant-inline-specifier,
readability-redundant-member-init,
readability-redundant-preprocessor,
readability-redundant-smartptr-get,