use zero as seed for qHash()

for compat

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2024-06-03 07:35:10 +03:00
parent c84daae9de
commit e3dc270d1e

View file

@ -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)