From 71a0419a1a5faa8a57221e3ee61270a731dae5fe Mon Sep 17 00:00:00 2001 From: beinhaerter <34543625+beinhaerter@users.noreply.github.com> Date: Thu, 1 Aug 2019 20:19:16 +0200 Subject: [PATCH] C.145: add "see also" C.67 (#1460) --- CppCoreGuidelines.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 86c79d2..ebb3f24 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -7685,6 +7685,10 @@ You can safely access a named polymorphic object in the scope of its definition, d.f(); // OK } +##### See also + +[A polymorphic class should suppress copying](#Rc-copy-virtual) + ##### Enforcement Flag all slicing.