diff options
author | Dave Houlton <euclid@lindenlab.com> | 2020-08-24 13:33:24 -0600 |
---|---|---|
committer | Dave Houlton <euclid@lindenlab.com> | 2020-08-24 13:52:57 -0600 |
commit | 0af47fe707bee4f07cfa81f1e3edbe73b250e53e (patch) | |
tree | a8a19afd84a68db76d65c4e9899db9376106b756 /.clang-format | |
parent | 0589c6076848e7caf5551c1dfacf2393cc870f1f (diff) |
DRTVWR-497 tweak clang-format rules for argument packing
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.clang-format b/.clang-format index 61c5acde88..ee8a8a8c92 100644 --- a/.clang-format +++ b/.clang-format @@ -12,7 +12,7 @@ AlignOperands: true AlignTrailingComments: true AllowAllArgumentsOnNextLine: false AllowAllConstructorInitializersOnNextLine: false -AllowAllParametersOfDeclarationOnNextLine: true +AllowAllParametersOfDeclarationOnNextLine: false AllowShortBlocksOnASingleLine: Always AllowShortCaseLabelsOnASingleLine: false AllowShortFunctionsOnASingleLine: All @@ -23,8 +23,8 @@ AlwaysBreakAfterDefinitionReturnType: None AlwaysBreakAfterReturnType: None AlwaysBreakBeforeMultilineStrings: false AlwaysBreakTemplateDeclarations: MultiLine -BinPackArguments: false -BinPackParameters: false +BinPackArguments: true +BinPackParameters: true BreakBeforeBinaryOperators: None BreakBeforeBraces: Allman BreakBeforeInheritanceComma: false @@ -44,7 +44,7 @@ Cpp11BracedListStyle: true DeriveLineEnding: true DerivePointerAlignment: false DisableFormat: false -ExperimentalAutoDetectBinPacking: false +ExperimentalAutoDetectBinPacking: true FixNamespaceComments: true ForEachMacros: - foreach |