.clang-format: change AllowShortFunctionsOnASingleLine back to Inline

This commit is contained in:
Nikita
2024-12-26 11:10:36 -08:00
parent 99a8ab795d
commit 2845995b02
2 changed files with 2 additions and 1 deletions

View File

@@ -44,7 +44,7 @@ AllowAllParametersOfDeclarationOnNextLine: false
# AllowShortBlocksOnASingleLine: Never # AllowShortBlocksOnASingleLine: Never
# AllowShortCaseLabelsOnASingleLine: false # AllowShortCaseLabelsOnASingleLine: false
# AllowShortEnumsOnASingleLine: true # AllowShortEnumsOnASingleLine: true
# AllowShortFunctionsOnASingleLine: All AllowShortFunctionsOnASingleLine: Inline
# AllowShortIfStatementsOnASingleLine: Never # AllowShortIfStatementsOnASingleLine: Never
# AllowShortLambdasOnASingleLine: All # AllowShortLambdasOnASingleLine: All
# AllowShortLoopsOnASingleLine: false # AllowShortLoopsOnASingleLine: false

View File

@@ -8,6 +8,7 @@ AlignTrailingComments:
Kind: Never Kind: Never
OverEmptyLines: 0 OverEmptyLines: 0
AllowAllParametersOfDeclarationOnNextLine: false AllowAllParametersOfDeclarationOnNextLine: false
AllowShortFunctionsOnASingleLine: Inline
BreakConstructorInitializers: AfterColon BreakConstructorInitializers: AfterColon
ColumnLimit: 0 ColumnLimit: 0
ConstructorInitializerIndentWidth: 8 ConstructorInitializerIndentWidth: 8