mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 13:05:51 +03:00
Enable bugprone-forward-declaration-namespace clang-tidy check
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
This commit is contained in:
parent
c8ea848596
commit
608bf025e6
3 changed files with 1 additions and 5 deletions
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
#include "testhelper.h"
|
||||
|
||||
using namespace OCC;
|
||||
class HttpCredentials;
|
||||
|
||||
class TestFolderMan: public QObject
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue