Details
-
Suggestion
-
Resolution: Fixed
-
P2: Important
-
6.6.0 Beta2
-
None
-
1d7950c94 (dev)
Description
When Qt 6.6 added support for q(u)int128, it forgot to add qHash() support for it.
Acceptance criteria:
- qHash() works with qint128 and quint128 on all QT_SUPPORTS_INT128 platforms
- not by falling back on one of the narrower integer types
- consistent with other integer overloads:
- qHash(x) == qHash(quint128(x)) ∀ x ∈Domain(quint64)
- qHash(x) == qHash(qint128(x)) ∀ x ∈Domain(qint64)