diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 9c29ecd..f28f785 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -11543,7 +11543,7 @@ Hungarian notation is evil (at least in a strongly statically-typed language). struct S { int m_; - S(int m) :m_{abs(m)) { } + S(int m) :m_{abs(m)} { } }; This is not evil.