diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-03-23 05:54:16 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-03-23 05:54:16 -0700 |
commit | 2ffdb8945f77e051630a90556a653de1c2f1e438 (patch) | |
tree | 1b98e8c4e070d0f2d36bb8f992e0bd282cb3f620 /CodingStyle | |
parent | 86ac7fdf47142d8ad26a27a36daa64a5ea435bdc (diff) | |
download | subsurface-2ffdb8945f77e051630a90556a653de1c2f1e438.tar.gz |
Update CodingStyle
Initializers were not documenting what we actually do.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'CodingStyle')
-rw-r--r-- | CodingStyle | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/CodingStyle b/CodingStyle index 75aa1d431..56511d93d 100644 --- a/CodingStyle +++ b/CodingStyle @@ -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) { } |