diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index edaa9cb..d693b6c 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -4279,7 +4279,7 @@ See [this in the Discussion section](#Sd-dtor). ##### Example, bad struct Base { // BAD: no virtual destructor - virtual f(); + virtual void f(); }; struct D : Base {