Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@nextcloud.com>2020-09-15 14:21:38 +0300
committerKevin Ottens (Rebase PR Action) <er-vin@users.noreply.github.com>2020-09-15 15:04:32 +0300
commit63c3580755c8dfb25c4df657acacf5c410df8967 (patch)
tree9f2cdfa322b038ef5cc814688c84e038e68ee837 /.clang-tidy
parent8aaa533a3e937c2bcf79344082d4172e8987c998 (diff)
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 <kevin.ottens@nextcloud.com>
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy1
1 files changed, 1 insertions, 0 deletions
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,