aboutsummaryrefslogtreecommitdiffstats
path: root/src/checks/level1/README-inefficient-qlist-soft.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/checks/level1/README-inefficient-qlist-soft.md')
-rw-r--r--src/checks/level1/README-inefficient-qlist-soft.md7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/checks/level1/README-inefficient-qlist-soft.md b/src/checks/level1/README-inefficient-qlist-soft.md
deleted file mode 100644
index beebb3d1..00000000
--- a/src/checks/level1/README-inefficient-qlist-soft.md
+++ /dev/null
@@ -1,7 +0,0 @@
-# inefficient-qlist-soft
-
-A less aggressive version of the **inefficient-qlist** check.
-
-Finds `QList<T>` where `sizeof(T) > sizeof(void*)`. `QVector<T>` should be used instead.
-Only warns if the container is a local variable and isn't passed to any method or returned,
-unlike **inefficient-qlist**. This makes it easier to fix the warnings without concern about source and binary compatibility.