aboutsummaryrefslogtreecommitdiffstats
path: root/src/checks/level0/README-connect-not-normalized.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/checks/level0/README-connect-not-normalized.md')
-rw-r--r--src/checks/level0/README-connect-not-normalized.md10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/checks/level0/README-connect-not-normalized.md b/src/checks/level0/README-connect-not-normalized.md
deleted file mode 100644
index 3931fd69..00000000
--- a/src/checks/level0/README-connect-not-normalized.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# connect-not-normalized
-
-Warns when the contents of `SIGNAL()`, `SLOT()`, `Q_ARG()` and `Q_RETURN_ARG()` are not normalized.
-
-Using normalized signatures allows to avoid unneeded memory allocations.
-
-For signals and slots it only warns for `connect` statements, not `disconnect`, since it only
-impacts the performance of the former.
-
-See `QMetaObject::normalizedSignature()` for more information.