aboutsummaryrefslogtreecommitdiffstats
path: root/src/checks/manuallevel/README-isempty-vs-count.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/checks/manuallevel/README-isempty-vs-count.md')
-rw-r--r--src/checks/manuallevel/README-isempty-vs-count.md11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/checks/manuallevel/README-isempty-vs-count.md b/src/checks/manuallevel/README-isempty-vs-count.md
deleted file mode 100644
index 4db9a33f..00000000
--- a/src/checks/manuallevel/README-isempty-vs-count.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# isempty-vs-count
-
-Finds places where you're using `Container::count()` or `Container::size()` instead of `Container::isEmpty()`.
-Although there's no performance benefit, `isEmpty()` provides better semantics.
-
-#### Example
-```
-QList<int> foo;
-...
-if (foo.count()) {}
-```