clang-format: Minor correction to not break parameters on the first line

Before:
   someLongFunction(
    argument1,
    argument2);

After:
   someLongFunction(argument1,
                    argument2);

	* .clang-format: correct function parameter break/indentation

Signed-off-by: Matthias Maennich <maennich@google.com>
This commit is contained in:
Matthias Maennich 2021-03-29 11:45:50 +01:00 committed by Dodji Seketeli
parent 2f8e1db0e7
commit 29d1d80165

View File

@ -7,7 +7,8 @@ AlwaysBreakAfterReturnType: All
BreakConstructorInitializers: BeforeColon
ConstructorInitializerAllOnOneLineOrOnePerLine: true
ConstructorInitializerIndentWidth: 2
ContinuationIndentWidth: 2
IndentWidth: 2
AlignAfterOpenBracket: Align
BinPackParameters: false
BreakStringLiterals: false
PointerAlignment: Left