Clang-Tidy: Silence warning affecting newer code

For now Clang-Tidy should be passable with the codebase as is. This warning
will be addressed as quality day task.
This commit is contained in:
Sergey Sharybin 2020-07-03 10:22:18 +02:00
parent 9ea5469178
commit dfdd23bae6
1 changed files with 2 additions and 0 deletions

View File

@ -30,6 +30,7 @@ Checks: >
-readability-redundant-string-cstr, -readability-redundant-string-cstr,
-readability-static-accessed-through-instance, -readability-static-accessed-through-instance,
-readability-redundant-declaration, -readability-redundant-declaration,
-readability-qualified-auto,
bugprone-*, bugprone-*,
-bugprone-narrowing-conversions, -bugprone-narrowing-conversions,
@ -50,5 +51,6 @@ Checks: >
-bugprone-parent-virtual-call, -bugprone-parent-virtual-call,
-bugprone-infinite-loop, -bugprone-infinite-loop,
-bugprone-copy-constructor-init, -bugprone-copy-constructor-init,
-bugprone-lambda-function-name,
WarningsAsErrors: '*' WarningsAsErrors: '*'