Enable bugprone-forward-declaration-namespace clang-tidy check

Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
This commit is contained in:
Kevin Ottens 2020-08-18 18:15:21 +02:00 committed by Kevin Ottens (Rebase PR Action)
parent c8ea848596
commit 608bf025e6
3 changed files with 1 additions and 5 deletions

View file

@ -1,6 +1,7 @@
Checks: '-*,
bugprone-argument-comment,
bugprone-branch-clone,
bugprone-forward-declaration-namespace,
cppcoreguidelines-init-variables,
misc-*,
-misc-non-private-member-variables-in-classes,

View file

@ -31,10 +31,6 @@ bool canOsXSendUserNotification();
void sendOsXUserNotification(const QString &title, const QString &message);
#endif
namespace Ui {
class Systray;
}
/**
* @brief The Systray class
* @ingroup gui

View file

@ -17,7 +17,6 @@
#include "testhelper.h"
using namespace OCC;
class HttpCredentials;
class TestFolderMan: public QObject
{