From 099748957349614f9a35f055581ebd4f13f920a6 Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Thu, 11 Aug 2016 17:18:38 +0200 Subject: [PATCH] bad signature --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {