From 696633572c4067b0455d59a7c81f5699964a07d7 Mon Sep 17 00:00:00 2001 From: Herb Sutter Date: Thu, 30 Mar 2023 14:14:19 -0700 Subject: [PATCH] Remove spurious Enforcement, closes #2061 --- CppCoreGuidelines.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index b22ce5d..46919a6 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -19406,10 +19406,6 @@ and M functions each containing a `using namespace X`with N lines of code in tot [Don't write `using namespace` at global scope in a header file](#Rs-using-directive). -##### Enforcement - -Flag multiple `using namespace` directives for different namespaces in a single source file. - ### SF.7: Don't write `using namespace` at global scope in a header file ##### Reason