diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index b5bab73..299a587 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -11525,7 +11525,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.