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

0001 # mutable-container-key
0002 
0003 Looks for `QMap` or `QHash` having key types which can be modified due to external factors.
0004 The key's value should never change, as it's needed for sorting or hashing, but with some types, such as non-owning smart pointers it might happen.
0005 The supported key types are: `QPointer`, `QWeakPointer`, `weak_ptr` and `QPersistentModelIndex`.