aboutsummaryrefslogtreecommitdiffstats
path: root/src/checks/level2/README-virtual-call-ctor.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/checks/level2/README-virtual-call-ctor.md')
-rw-r--r--src/checks/level2/README-virtual-call-ctor.md9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/checks/level2/README-virtual-call-ctor.md b/src/checks/level2/README-virtual-call-ctor.md
deleted file mode 100644
index 2bf715c9..00000000
--- a/src/checks/level2/README-virtual-call-ctor.md
+++ /dev/null
@@ -1,9 +0,0 @@
-# virtual-call-ctor
-
-Finds places where you're calling pure virtual functions inside a constructor or destructor.
-Compilers usually warn about this if there isn't any indirection, this check will catch cases like calling
-a non-pure virtual that calls a pure virtual.
-
-
-This check only looks for pure virtuals, ignoring non-pure, which in theory you shouldn't call,
-but seems common practice.