aboutsummaryrefslogtreecommitdiffstats
path: root/docs/checks/README-inefficient-qlist.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/checks/README-inefficient-qlist.md')
-rw-r--r--docs/checks/README-inefficient-qlist.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/checks/README-inefficient-qlist.md b/docs/checks/README-inefficient-qlist.md
new file mode 100644
index 00000000..3bfe3f1c
--- /dev/null
+++ b/docs/checks/README-inefficient-qlist.md
@@ -0,0 +1,5 @@
+# inefficient-qlist
+
+Finds `QList<T>` where `sizeof(T) > sizeof(void*)`. `QVector<T>` should be used instead.
+
+This is a very noisy check and hence disabled by default. See **inefficient-qlist-soft** for a more useful check.