summaryrefslogtreecommitdiffstats
path: root/CodingStyle
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-03-23 05:54:16 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-03-23 05:54:16 -0700
commit2ffdb8945f77e051630a90556a653de1c2f1e438 (patch)
tree1b98e8c4e070d0f2d36bb8f992e0bd282cb3f620 /CodingStyle
parent86ac7fdf47142d8ad26a27a36daa64a5ea435bdc (diff)
downloadsubsurface-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--CodingStyle5
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)
{
}