fix parantheses in example

() => {} in initializer list
This commit is contained in:
niun 2015-09-24 14:53:07 +02:00
parent d2b5249aef
commit 4278cd5c92

View File

@ -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.