mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 12:44:42 +03:00
fix parantheses in example
() => {} in initializer list
This commit is contained in:
@@ -11525,7 +11525,7 @@ Hungarian notation is evil (at least in a strongly statically-typed language).
|
|||||||
|
|
||||||
struct S {
|
struct S {
|
||||||
int m_;
|
int m_;
|
||||||
S(int m) :m_(abs(m)) { }
|
S(int m) :m_{abs(m)} { }
|
||||||
};
|
};
|
||||||
|
|
||||||
This is not evil.
|
This is not evil.
|
||||||
|
|||||||
Reference in New Issue
Block a user