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

0001 # connect-not-normalized
0002 
0003 Warns when the contents of `SIGNAL()`, `SLOT()`, `Q_ARG()` and `Q_RETURN_ARG()` are not normalized.
0004 
0005 Using normalized signatures allows to avoid unneeded memory allocations.
0006 
0007 For signals and slots it only warns for `connect` statements, not `disconnect`, since it only
0008 impacts the performance of the former.
0009 
0010 See `QMetaObject::normalizedSignature()` for more information.