Merge pull request #119 from niun/patch-1

Fix: unequal parantheses in example
This commit is contained in:
Gabriel Dos Reis 2015-09-24 07:47:22 -07:00
commit 868145943c

View File

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