mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-25 22:14:32 +00:00
Use faster hash function
qHash(QString) will need to hash/loop through all the data while the new code will only need one memcpy() and a few bit manipulations.
This commit is contained in:
parent
c3ce1aaa3d
commit
2b4490d8a7
@ -89,5 +89,9 @@ bool BitTorrent::operator!=(const InfoHash &left, const InfoHash &right)
|
|||||||
|
|
||||||
uint BitTorrent::qHash(const InfoHash &key, const uint seed)
|
uint BitTorrent::qHash(const InfoHash &key, const uint seed)
|
||||||
{
|
{
|
||||||
|
#if (LIBTORRENT_VERSION_NUM < 10200)
|
||||||
return ::qHash(static_cast<QString>(key), seed);
|
return ::qHash(static_cast<QString>(key), seed);
|
||||||
|
#else
|
||||||
|
return ::qHash((std::hash<lt::sha1_hash> {})(key), seed);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user