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