aboutsummaryrefslogtreecommitdiffstats
path: root/src/checks/level2/README-ctor-missing-parent-argument.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/checks/level2/README-ctor-missing-parent-argument.md')
-rw-r--r--src/checks/level2/README-ctor-missing-parent-argument.md8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/checks/level2/README-ctor-missing-parent-argument.md b/src/checks/level2/README-ctor-missing-parent-argument.md
deleted file mode 100644
index 90b9b3ab..00000000
--- a/src/checks/level2/README-ctor-missing-parent-argument.md
+++ /dev/null
@@ -1,8 +0,0 @@
-# ctor-missing-parent-argument
-
-Warns when `QObject` derived classes don't have at least one CTOR receiving a QObject.
-
-This is an attempt to catch classes which are missing the parent argument.
-It doesn't have false-positives, but might miss true-positives. For example,
-if you have a CTOR which receives a `QObject* but then forget to pass it to the
-base CTOR.