summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <tmpsantos@gmail.com>2020-04-01 13:19:23 +0300
committerThiago Marcos P. Santos <tmpsantos@gmail.com>2020-04-01 14:41:23 +0300
commit9de0bacf7defe2bec3270aa699c77d7fc97e1243 (patch)
tree0c34574a64e5552e014ca2f02137bf062b8c1405
parent09a5ee2d8b526f55b6d52841e235cf9495119ba1 (diff)
downloadqtlocation-mapboxgl-9de0bacf7defe2bec3270aa699c77d7fc97e1243.tar.gz
[build] Remove misc-non-private-member-variables-in-classes check
It is warning about protected members which are not a big deal.
-rw-r--r--.clang-tidy5
1 files changed, 1 insertions, 4 deletions
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'