@@ -1269,14 +1269,9 @@ FormatStyle getLLVMStyle(FormatStyle::LanguageKind Language) {
1269
1269
LLVMStyle.AlwaysBreakBeforeMultilineStrings = false ;
1270
1270
LLVMStyle.AlwaysBreakTemplateDeclarations = FormatStyle::BTDS_MultiLine;
1271
1271
LLVMStyle.AttributeMacros .push_back (" __capability" );
1272
+ LLVMStyle.BitFieldColonSpacing = FormatStyle::BFCS_Both;
1272
1273
LLVMStyle.BinPackArguments = true ;
1273
1274
LLVMStyle.BinPackParameters = true ;
1274
- LLVMStyle.BreakArrays = true ;
1275
- LLVMStyle.BreakBeforeBinaryOperators = FormatStyle::BOS_None;
1276
- LLVMStyle.BreakBeforeConceptDeclarations = FormatStyle::BBCDS_Always;
1277
- LLVMStyle.BreakBeforeInlineASMColon = FormatStyle::BBIAS_OnlyMultiline;
1278
- LLVMStyle.BreakBeforeTernaryOperators = true ;
1279
- LLVMStyle.BreakBeforeBraces = FormatStyle::BS_Attach;
1280
1275
LLVMStyle.BraceWrapping = {/* AfterCaseLabel=*/ false ,
1281
1276
/* AfterClass=*/ false ,
1282
1277
/* AfterControlStatement=*/ FormatStyle::BWACS_Never,
@@ -1295,8 +1290,13 @@ FormatStyle getLLVMStyle(FormatStyle::LanguageKind Language) {
1295
1290
/* SplitEmptyFunction=*/ true ,
1296
1291
/* SplitEmptyRecord=*/ true ,
1297
1292
/* SplitEmptyNamespace=*/ true };
1298
- LLVMStyle.BitFieldColonSpacing = FormatStyle::BFCS_Both;
1299
1293
LLVMStyle.BreakAfterJavaFieldAnnotations = false ;
1294
+ LLVMStyle.BreakArrays = true ;
1295
+ LLVMStyle.BreakBeforeBinaryOperators = FormatStyle::BOS_None;
1296
+ LLVMStyle.BreakBeforeBraces = FormatStyle::BS_Attach;
1297
+ LLVMStyle.BreakBeforeConceptDeclarations = FormatStyle::BBCDS_Always;
1298
+ LLVMStyle.BreakBeforeInlineASMColon = FormatStyle::BBIAS_OnlyMultiline;
1299
+ LLVMStyle.BreakBeforeTernaryOperators = true ;
1300
1300
LLVMStyle.BreakConstructorInitializers = FormatStyle::BCIS_BeforeColon;
1301
1301
LLVMStyle.BreakInheritanceList = FormatStyle::BILS_BeforeColon;
1302
1302
LLVMStyle.BreakStringLiterals = true ;
0 commit comments