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

0001 # qmap-with-pointer-key
0002 
0003 Finds cases where you're using `QMap<K,T>` and K is a pointer.
0004 
0005 `QMap` has the particularity of sorting it's keys, but sorting by memory
0006 address makes no sense.
0007 Use `QHash` instead, which provides faster lookups.