Update CodingStyle

Initializers were not documenting what we actually do.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-03-23 05:54:16 -07:00
parent 86ac7fdf47
commit 2ffdb8945f

View file

@ -73,8 +73,9 @@ Basic rules
- in a C++ constructor initialization list, the colon is on the same line and
continuation lines are aligned as the rule above:
ClassName::ClassName() : x(1), y(2),
z(3)
ClassName::ClassName() : x(1),
y(2),
z(3)
{
}