From 4c4fb37b43eb1058d884810a03b86e8b0c007f07 Mon Sep 17 00:00:00 2001 From: Herb Sutter Date: Thu, 17 Jun 2021 11:45:01 -0700 Subject: [PATCH] Corrected enforcement of C.67 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 4af0425..34e0282 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -6355,7 +6355,7 @@ Classes that represent exception objects need both to be polymorphic and copy-co ##### Enforcement -* Flag a polymorphic class with a non-deleted copy operation. +* Flag a polymorphic class with a public copy operation. * Flag an assignment of polymorphic class objects. ## C.other: Other default operation rules -- GitLab