1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-22 20:44:15 +00:00

Merge pull request #14861 from Chocobo1/warnings

Initialize struct members by default
This commit is contained in:
Chocobo1 2021-05-02 11:26:30 +08:00 committed by GitHub
commit c9a552c89c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,10 +53,10 @@ namespace BitTorrent
int numSeeds = -1;
int numLeeches = -1;
int numDownloaded = -1;
QString message;
QString message {};
};
QString url;
QString url {};
int tier = 0;
QVector<EndpointStats> endpoints {};
@ -67,7 +67,7 @@ namespace BitTorrent
int numSeeds = -1;
int numLeeches = -1;
int numDownloaded = -1;
QString message;
QString message {};
};
bool operator==(const TrackerEntry &left, const TrackerEntry &right);