C.130: drop final from last commit per meeting notes

This commit is contained in:
Sergey Zubkov
2021-11-11 16:13:12 -05:00
parent 86a42c29fc
commit 620cf6278e

View File

@@ -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<D*> clone() const override