Use left pointer alignment in .clang-format

This commit is contained in:
2023-05-24 11:52:56 +02:00
parent 9799748ed2
commit 0073331948

3
.clang-format Normal file → Executable file
View File

@@ -1,4 +1,4 @@
--- ---
AccessModifierOffset: '-4' AccessModifierOffset: '-4'
AllowShortFunctionsOnASingleLine: InlineOnly AllowShortFunctionsOnASingleLine: InlineOnly
AllowShortIfStatementsOnASingleLine: Never AllowShortIfStatementsOnASingleLine: Never
@@ -8,5 +8,6 @@ BreakBeforeBraces: Allman
ColumnLimit: '100' ColumnLimit: '100'
ConstructorInitializerAllOnOneLineOrOnePerLine: 'true' ConstructorInitializerAllOnOneLineOrOnePerLine: 'true'
IndentWidth: '4' IndentWidth: '4'
PointerAlignment: Left
... ...