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
path: root/src
diff options
context:
space:
mode:
authorMatthieu Gallien <matthieu.gallien@nextcloud.com>2022-09-30 20:56:31 +0300
committerMatthieu Gallien <matthieu_gallien@yahoo.fr>2022-10-04 02:32:46 +0300
commit9b7d1add529b00e3b5e247259f6b92d615c44795 (patch)
tree75fa011fae8be149d762afe9aa4e97f426c09801 /src
parente5d5471fb6c24bcf7ac4a57a35328fa5f3c5a0a6 (diff)
apply modernize-use-using via clang-tidyci/useUsing
ran run-clang-tidy-14.py -header-filter='.*' -checks='-*,modernize-use-using' -fix Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
Diffstat (limited to 'src')
-rw-r--r--src/csync/csync.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csync/csync.h b/src/csync/csync.h
index 0c418f9ad..8796a9d21 100644
--- a/src/csync/csync.h
+++ b/src/csync/csync.h
@@ -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;