@@ -120,7 +120,7 @@ AlignArrayOfStructures: Right
120
120
# double foo = 1;
121
121
# float bar = 2;
122
122
# /
123
- AlignConsecutiveAssignment :
123
+ AlignConsecutiveAssignments :
124
124
Enabled : false
125
125
126
126
# /
@@ -417,12 +417,12 @@ AllowShortFunctionsOnASingleLine: Empty
417
417
# // Bad...
418
418
# if ( a ) return;
419
419
# /
420
- AllowShortIfStatementsOnASingleLine : Never;
420
+ AllowShortIfStatementsOnASingleLine : Never
421
421
422
422
# /
423
423
# Disallow short lambda functions being put on a single line, except for empty lambda functions.
424
424
# /
425
- AllowShortLambdasOnASingleLine : Empty;
425
+ AllowShortLambdasOnASingleLine : Empty
426
426
427
427
# /
428
428
# Disallow short loops on a single line.
@@ -482,7 +482,7 @@ BinPackArguments: true
482
482
# int b,
483
483
# int c );
484
484
# /
485
- BinPackParameters : BinPack
485
+ BinPackParameters : true
486
486
487
487
# /
488
488
# Always include a space after the colon for bitfields.
@@ -571,7 +571,7 @@ BreakAfterReturnType: Automatic
571
571
# int a = b
572
572
# + c
573
573
# /
574
- BreakBeforeBinaryOperators : None;
574
+ BreakBeforeBinaryOperators : None
575
575
576
576
# /
577
577
# Always attach braces to surrounding context.
@@ -649,7 +649,7 @@ BreakBeforeTernaryOperators: true
649
649
# d ) +
650
650
# e;
651
651
# /
652
- BreakBinaryOperations : Never
652
+ # BreakBinaryOperations: Never # FIXME: available in clang-format v20
653
653
654
654
# /
655
655
# Break constructor initializers after the colon and commas.
@@ -1078,7 +1078,7 @@ KeepEmptyLines:
1078
1078
# /
1079
1079
# Remove form feed characters.
1080
1080
# /
1081
- KeepFormFeed : false
1081
+ # KeepFormFeed: false # FIXME: available in clang-format 20`
1082
1082
1083
1083
# /
1084
1084
# Align lambda function bodies relative to the outer scope.
@@ -1266,7 +1266,7 @@ ReferenceAlignment: Right
1266
1266
# /
1267
1267
# Never reflow comments.
1268
1268
# /
1269
- ReflowComments : Never
1269
+ ReflowComments : false
1270
1270
1271
1271
# /
1272
1272
# Remove empty lines in unwrapped lines.
@@ -1281,7 +1281,7 @@ ReflowComments: Never
1281
1281
#
1282
1282
# = a + b;
1283
1283
# /
1284
- RemoveEmptyLinesInUnwrappedLines : true
1284
+ # RemoveEmptyLinesInUnwrappedLines: true # FIXME: available in clang-format 20
1285
1285
1286
1286
# /
1287
1287
# Always replace multiple parentheses with single parentheses.
0 commit comments