From c07218405289b6ca883e6aabfd5a9fab3daf42be Mon Sep 17 00:00:00 2001 From: hsutter Date: Thu, 21 Mar 2019 11:36:55 -0700 Subject: [PATCH] Closes #1370 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index f7305c0..d6fd1a7 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -7013,7 +7013,7 @@ We want to eliminate two particular classes of errors: ##### Enforcement -* Compare names in base and derived classes and flag uses of the same name that does not override. +* Compare virtual function names in base and derived classes and flag uses of the same name that does not override. * Flag overrides with neither `override` nor `final`. * Flag function declarations that use more than one of `virtual`, `override`, and `final`.