mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-21 20:45:51 +03:00
Merge pull request #4993 from nextcloud/ci/useUsing
apply modernize-use-using via clang-tidy
This commit is contained in:
commit
17e2f1de03
2 changed files with 3 additions and 3 deletions
|
@ -165,7 +165,7 @@ Q_ENUM_NS(ItemType)
|
|||
|
||||
using namespace CSyncEnums;
|
||||
using CSYNC_STATUS = CSyncEnums::csync_status_codes_e;
|
||||
typedef struct csync_file_stat_s csync_file_stat_t;
|
||||
using csync_file_stat_t = struct csync_file_stat_s;
|
||||
|
||||
struct OCSYNC_EXPORT csync_file_stat_s {
|
||||
time_t modtime = 0;
|
||||
|
|
|
@ -44,10 +44,10 @@ int oc_mkdir(const QString &path)
|
|||
|
||||
static mbchar_t wd_buffer[WD_BUFFER_SIZE];
|
||||
|
||||
typedef struct {
|
||||
using statevar = struct {
|
||||
QByteArray result;
|
||||
QByteArray ignored_dir;
|
||||
} statevar;
|
||||
};
|
||||
|
||||
/* remove the complete test dir */
|
||||
static int wipe_testdir()
|
||||
|
|
Loading…
Reference in a new issue