From: Kevin Ottens Date: Tue, 15 Sep 2020 11:21:38 +0000 (+0200) Subject: Disable bugprone-forward-declaration-namespace check X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~22^2~167^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=63c3580755c8dfb25c4df657acacf5c410df8967;p=nextcloud-desktop.git Disable bugprone-forward-declaration-namespace check Turns out this clang-tidy check can give false positives coming from headers outside the project while it shouldn't. Signed-off-by: Kevin Ottens --- diff --git a/.clang-tidy b/.clang-tidy index 6028c4390..d24954c39 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -1,5 +1,6 @@ Checks: '-*, bugprone-*, + -bugprone-forward-declaration-namespace, cppcoreguidelines-init-variables, misc-*, -misc-non-private-member-variables-in-classes,