diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 8ba062f..513642c 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -7493,7 +7493,6 @@ Copying a polymorphic class is discouraged due to the slicing problem, see [C.67 class D : public B { public: - ~D() override {}; gsl::owner clone() const override { return new D{*this};