mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-21 08:46:00 +03:00
parent
52fbb774a2
commit
e4313d6651
4 changed files with 4 additions and 5 deletions
|
@ -35,7 +35,6 @@ Checks: >
|
|||
-modernize-use-auto,
|
||||
-modernize-use-nodiscard,
|
||||
-modernize-use-trailing-return-type,
|
||||
-modernize-use-using,
|
||||
-readability-function-cognitive-complexity,
|
||||
-readability-function-size,
|
||||
-readability-identifier-length,
|
||||
|
|
|
@ -276,7 +276,7 @@ struct StructName {};
|
|||
|
||||
enum EnumName {};
|
||||
|
||||
typedef QList<ClassName> SomeList;
|
||||
using SomeList = QList<ClassName>;
|
||||
|
||||
namespace NamespaceName
|
||||
{
|
||||
|
|
|
@ -64,8 +64,8 @@ struct Sample
|
|||
T upload {};
|
||||
};
|
||||
|
||||
typedef Sample<qlonglong> SpeedSample;
|
||||
typedef Sample<qreal> SpeedSampleAvg;
|
||||
using SpeedSample = Sample<qlonglong>;
|
||||
using SpeedSampleAvg = Sample<qreal>;
|
||||
|
||||
class SpeedMonitor
|
||||
{
|
||||
|
|
|
@ -40,4 +40,4 @@ enum class ShutdownDialogAction
|
|||
Hibernate
|
||||
};
|
||||
|
||||
typedef QMap<QString, QString> QStringMap;
|
||||
using QStringMap = QMap<QString, QString>;
|
||||
|
|
Loading…
Reference in a new issue