[clang-tidy] deactivate bugprone-branch-clone check

The check triggers on switch cases running the same function and, more
importantly, on our macro CommandLineSwitchStart. Not usable for this
project, deactivating the check.
This commit is contained in:
Armin Novak 2024-09-18 16:14:55 +02:00
parent 33a7bee4f9
commit 98f2f69f60
No known key found for this signature in database
GPG Key ID: 2CF4A2D2D3D72105
1 changed files with 1 additions and 0 deletions

View File

@ -24,6 +24,7 @@ Checks: >
-cppcoreguidelines-interfaces-global-init,
-bugprone-easily-swappable-parameters,
-bugprone-assignment-in-if-condition,
-bugprone-branch-clone,
-bugprone-macro-parentheses,
-cert-dcl16-c,
-cert-env33-c,