From 4a386f0a650b5db68ffb92bbbe99e29df93cd8f7 Mon Sep 17 00:00:00 2001 From: Sergey Zubkov Date: Thu, 7 Apr 2022 16:21:10 -0400 Subject: [PATCH] [SF.21] adjust per editors call --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 7b02c0d..571319d 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -19571,7 +19571,7 @@ It is almost always a bug to mention an unnamed namespace in a header file. namespace Foo { - inline constexpr double x = 1.234; // good + const double x = 1.234; // good inline double foo(double y) // good {