aboutsummaryrefslogtreecommitdiffstats
path: root/src/checks/level2/README-copyable-polymorphic.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/checks/level2/README-copyable-polymorphic.md')
-rw-r--r--src/checks/level2/README-copyable-polymorphic.md8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/checks/level2/README-copyable-polymorphic.md b/src/checks/level2/README-copyable-polymorphic.md
deleted file mode 100644
index a41ead02..00000000
--- a/src/checks/level2/README-copyable-polymorphic.md
+++ /dev/null
@@ -1,8 +0,0 @@
-# copyable-polymorphic
-
-Finds polymorphic classes that are copyable.
-These classes are usually vulnerable to slicing [1].
-
-To fix these warnings use Q_DISABLE_COPY or delete the copy-ctor yourself.
-
-[1] <https://en.wikipedia.org/wiki/Object_slicing>