Fix: unequal parantheses in example

This commit is contained in:
niun
2015-09-24 13:36:50 +02:00
parent 9ce7259b2e
commit d2b5249aef

View File

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