Warning, /sdk/clazy/docs/checks/README-qhash-with-char-pointer-key.md is written in an unsupported language. File is not indexed.

0001 # qhash-with-char-pointer-key
0002 
0003 Finds cases of `QHash<const char *, T>`. It's error-prone as the key is just compared by the address of the string literal and not the value itself.
0004 
0005 This check is disabled by default as there are valid uses-cases.