mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-23 10:22:55 +00:00
use zero as seed for qHash()
for compat Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
c84daae9de
commit
e3dc270d1e
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ QT_BEGIN_NAMESPACE
|
|||
|
||||
uint qHash(const char *key, const uint len)
|
||||
{
|
||||
return libdeflate_crc32(23, key, len);
|
||||
return libdeflate_crc32(0, key, len);
|
||||
}
|
||||
|
||||
uint qHash(const QBitArray &bitArray)
|
||||
|
|
Loading…
Add table
Reference in a new issue