From 620cf6278eef13ba71f0a7f9be8c6cf91a294966 Mon Sep 17 00:00:00 2001 From: Sergey Zubkov Date: Thu, 11 Nov 2021 16:13:12 -0500 Subject: [PATCH] C.130: drop final from last commit per meeting notes --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 3778ef1..8ba062f 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -7491,7 +7491,7 @@ Copying a polymorphic class is discouraged due to the slicing problem, see [C.67 // ... }; - class D final : public B { + class D : public B { public: ~D() override {}; gsl::owner clone() const override