diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 942b084..7e81402 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -6530,6 +6530,7 @@ Such as on an ABI (link) boundary. ##### Example struct Device { + virtual ~Device() = default; virtual void write(span outbuf) = 0; virtual void read(span inbuf) = 0; };