aboutsummaryrefslogtreecommitdiffstats
path: root/docs/checks/README-qhash-with-char-pointer-key.md
blob: 7d475105996874fffbf56c416cdb3433a3d1901b (plain)
1
2
3
4
5
6
# qhash-with-char-pointer-key

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 string literal itself.

Check is disabled by default as there are valid uses-cases.