Switch to QHash

This commit is contained in:
Chocobo1 2023-08-08 22:31:39 +08:00
parent 44f0a63354
commit 870bcc7a19
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C

View File

@ -33,7 +33,6 @@
#include <QtContainerFwd>
#include <QtGlobal>
#include <QHash>
#include <QMap>
#include <QString>
#include <QStringView>
@ -64,8 +63,7 @@ namespace BitTorrent
QString url {};
int tier = 0;
// TODO: Use QHash<TrackerEntry::Endpoint, QHash<int, EndpointStats>> once Qt5 is dropped.
QMap<Endpoint, QHash<int, EndpointStats>> stats {};
QHash<Endpoint, QHash<int, EndpointStats>> stats {};
// Deprecated fields
Status status = NotContacted;