From bb93d92aab3e78bc36714258675a1bbcca8f973d Mon Sep 17 00:00:00 2001 From: Yuri Gorshenin Date: Tue, 28 Jul 2015 19:14:54 +0300 Subject: [PATCH] [clang-format] Fixed clang-format config. --- .clang-format | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 9b9de47e7c..5430c9aeaf 100644 --- a/.clang-format +++ b/.clang-format @@ -12,8 +12,10 @@ AllowShortFunctionsOnASingleLine: true AllowShortIfStatementsOnASingleLine: false AllowShortLoopsOnASingleLine: false BreakBeforeBraces: Allman -BreakConstructorInitializersBeforeComma: false +BreakConstructorInitializersBeforeComma: true ColumnLimit: 100 +ConstructorInitializerIndentWidth: 2 DerivePointerAlignment: false NamespaceIndentation: None PointerAlignment: Middle +Standard: Cpp11