mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07: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
1 changed files with 4 additions and 0 deletions
|
@ -89,5 +89,9 @@ bool BitTorrent::operator!=(const InfoHash &left, const InfoHash &right)
|
|||
|
||||
uint BitTorrent::qHash(const InfoHash &key, const uint seed)
|
||||
{
|
||||
#if (LIBTORRENT_VERSION_NUM < 10200)
|
||||
return ::qHash(static_cast<QString>(key), seed);
|
||||
#else
|
||||
return ::qHash((std::hash<lt::sha1_hash> {})(key), seed);
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue