3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-05 09:04:08 +00:00

hashlib: Use a better hash for pool.

This commit is contained in:
Wanda 2023-09-26 18:56:54 +02:00 committed by Lofty
parent 934c82254d
commit c172fef01a

View file

@ -988,7 +988,7 @@ public:
return !operator==(other);
}
bool hash() const {
unsigned int hash() const {
unsigned int hashval = mkhash_init;
for (auto &it : entries)
hashval ^= ops.hash(it.udata);