aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)
{
}