From e279f3b1bdba93f653a06f33665c5f16cff9fdb6 Mon Sep 17 00:00:00 2001 From: ven Date: Sun, 20 Sep 2015 12:35:14 +0200 Subject: [PATCH] Fix closing tag --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 8e8dca7..0058c1a 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -4737,7 +4737,7 @@ not using this (over)general interface in favor of a particular interface found * Warn on any class that contains data members and also has an overridable (non-`final`) virtual function. - ### C.122: Use abstract classes as interfaces when complete separation of interface and implementation is needed **Reason**: Such as on an ABI (link) boundary.