diff options
author | David Robillard <d@drobilla.net> | 2020-11-27 17:58:13 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-27 21:42:52 +0100 |
commit | d6523b8e44d72241d6365767dd78e25f71291f53 (patch) | |
tree | 20259dc5d119d2dea6c847cca4953d0c0846ef5f /.clang-tidy | |
parent | 7c991383000520d03acfb7a1adfd834dd7c8e35e (diff) | |
download | patchage-d6523b8e44d72241d6365767dd78e25f71291f53.tar.gz patchage-d6523b8e44d72241d6365767dd78e25f71291f53.tar.bz2 patchage-d6523b8e44d72241d6365767dd78e25f71291f53.zip |
Fix warnings in Jack DBus driver
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy index 6048690..5a173fe 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -11,6 +11,7 @@ Checks: > -*-vararg, -bugprone-branch-clone, -bugprone-forward-declaration-namespace, + -cert-dcl50-cpp, -cert-msc30-c, -cert-msc50-cpp, -clang-analyzer-optin.cplusplus.VirtualCall, @@ -20,6 +21,7 @@ Checks: > -cppcoreguidelines-pro-bounds-array-to-pointer-decay, -cppcoreguidelines-pro-bounds-constant-array-index, -cppcoreguidelines-pro-bounds-pointer-arithmetic, + -cppcoreguidelines-pro-type-const-cast, -cppcoreguidelines-pro-type-cstyle-cast, -cppcoreguidelines-pro-type-reinterpret-cast, -cppcoreguidelines-pro-type-union-access, @@ -27,6 +29,7 @@ Checks: > -fuchsia-default-arguments-declarations, -fuchsia-multiple-inheritance, -fuchsia-overloaded-operator, + -google-readability-todo, -google-runtime-references, -hicpp-no-array-decay, -hicpp-signed-bitwise, |