Warning, /sdk/clazy/docs/checks/README-qt6-qhash-signature.md is written in an unsupported language. File is not indexed.

0001 # qt6-qhash-signature
0002 
0003 Warns and corrects the signature for `qHash`.
0004 
0005 `uint qHash(MyType x, uint seed)` is replaced with `size_t qHash(MyType x, size_t seed)`
0006 
0007 Also corrects the signature for `qHashBits`, `qHashRange` and `qHashRangeCommutative`.
0008 
0009 This fix-it is intended to aid the user porting from Qt5 to Qt6.
0010 Run this check with Qt5. The produced fixed code will compile on Qt6.