aboutsummaryrefslogtreecommitdiffstats
path: root/_clang-format
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@qt.io>2018-08-28 11:11:24 +0200
committerFrederik Gladhorn <frederik.gladhorn@qt.io>2018-08-30 09:09:28 +0000
commit5872e22f31507524f7bfc3d03e8b8723ed66d277 (patch)
tree88307ba40c35a20403fd0b92aaff424041463693 /_clang-format
parent5a2a93ddf48465f37c116ef93f66682d789a61fc (diff)
_clang-format: indent initializers with four spaces, not eight
Change-Id: I9fc644554bd326a3a54163072b7b9e06253a5ff2 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io> Reviewed-by: Paul Wicking <paul.wicking@qt.io>
Diffstat (limited to '_clang-format')
-rw-r--r--_clang-format4
1 files changed, 2 insertions, 2 deletions
diff --git a/_clang-format b/_clang-format
index c2e09757..ee000a1e 100644
--- a/_clang-format
+++ b/_clang-format
@@ -49,8 +49,8 @@ BraceWrapping:
# When constructor initializers do not fit on one line, put them each on a new line.
ConstructorInitializerAllOnOneLineOrOnePerLine: true
-# Indent initializers by 8 spaces
-ConstructorInitializerIndentWidth: 8
+# Indent initializers by 4 spaces
+ConstructorInitializerIndentWidth: 4
# Indent width for line continuations.
ContinuationIndentWidth: 8