From 9de0bacf7defe2bec3270aa699c77d7fc97e1243 Mon Sep 17 00:00:00 2001 From: "Thiago Marcos P. Santos" Date: Wed, 1 Apr 2020 13:19:23 +0300 Subject: [build] Remove misc-non-private-member-variables-in-classes check It is warning about protected members which are not a big deal. --- .clang-tidy | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to '.clang-tidy') diff --git a/.clang-tidy b/.clang-tidy index 7575d21780..a6f4b3f4ac 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -14,6 +14,7 @@ Checks: > -google-readability-todo, -google-runtime-int, -google-runtime-references, + -misc-non-private-member-variables-in-classes, -modernize-avoid-c-arrays, -readability-braces-around-statements, -readability-else-after-return, @@ -25,7 +26,3 @@ Checks: > WarningsAsErrors: '*' HeaderFilterRegex: '.*' FormatStyle: file - -CheckOptions: - - key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic - value: '1' -- cgit v1.2.1