@@ -1212,11 +1212,11 @@ struct FormatStyle {
12121212 // / \version 3.7
12131213 bool BinPackArguments;
12141214
1215- // / If ``BinPackLongBracedLists `` is ``true`` it overrides
1215+ // / If ``BinPackLongBracedList `` is ``true`` it overrides
12161216 // / ``BinPackArguments`` if there are 20 or more items in a braced
12171217 // / initializer list.
12181218 // / \code
1219- // / BinPackLongBracedLists : false vs. BinPackLongBracedLists : true
1219+ // / BinPackLongBracedList : false vs. BinPackLongBracedList : true
12201220 // / vector<int> x{ vector<int> x{1, 2, ...,
12211221 // / 20, 21};
12221222 // / 1,
@@ -1226,7 +1226,7 @@ struct FormatStyle {
12261226 // / 21};
12271227 // / \endcode
12281228 // / \version 21
1229- bool BinPackLongBracedLists ;
1229+ bool BinPackLongBracedList ;
12301230
12311231 // / Different way to try to fit all parameters on a line.
12321232 enum BinPackParametersStyle : int8_t {
@@ -2564,8 +2564,6 @@ struct FormatStyle {
25642564 // / the parentheses of a function call with that name. If there is no name,
25652565 // / a zero-length name is assumed.
25662566 // /
2567- // / ``BinPackArguments`` may be forced to true for initializer lists with
2568- // / more than 20 items if ``BinPackLongBracedLists`` is true.
25692567 // / \code
25702568 // / true: false:
25712569 // / vector<int> x{1, 2, 3, 4}; vs. vector<int> x{ 1, 2, 3, 4 };
@@ -5285,7 +5283,7 @@ struct FormatStyle {
52855283 R.AlwaysBreakBeforeMultilineStrings &&
52865284 AttributeMacros == R.AttributeMacros &&
52875285 BinPackArguments == R.BinPackArguments &&
5288- BinPackLongBracedLists == R.BinPackLongBracedLists &&
5286+ BinPackLongBracedList == R.BinPackLongBracedList &&
52895287 BinPackParameters == R.BinPackParameters &&
52905288 BitFieldColonSpacing == R.BitFieldColonSpacing &&
52915289 BracedInitializerIndentWidth == R.BracedInitializerIndentWidth &&
0 commit comments