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/cmd
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@nextcloud.com>2020-08-12 16:23:11 +0300
committerKevin Ottens <kevin.ottens@nextcloud.com>2020-08-12 19:18:57 +0300
commitd58ec4bf706515ce74f8f63aa284b867566fd9e7 (patch)
tree6349f1c16cbc37cbb86fd92f64068a512d7dd2ad /src/cmd
parent7bb54e34d77f03f5915715137cc14761e4815fc9 (diff)
Enable the modernize-use-using check on clang-tidy
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
Diffstat (limited to 'src/cmd')
-rw-r--r--src/cmd/netrcparser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/netrcparser.h b/src/cmd/netrcparser.h
index 028ee1380..8ad346551 100644
--- a/src/cmd/netrcparser.h
+++ b/src/cmd/netrcparser.h
@@ -27,7 +27,7 @@ namespace OCC {
class NetrcParser
{
public:
- typedef QPair<QString, QString> LoginPair;
+ using LoginPair = QPair<QString, QString>;
NetrcParser(const QString &file = QString());
bool parse();