[clang-format] Group options that pack constructor initializers
Add a new option PackConstructorInitializers and deprecate the related options ConstructorInitializerAllOnOneLineOrOnePerLine and AllowAllConstructorInitializersOnNextLine. Below is the mapping: PackConstructorInitializers ConstructorInitializer... AllowAll... Never - - BinPack false - CurrentLine true false NextLine true true The option value Never fixes PR50549 by always placing each constructor initializer on its own line. Differential Revision: https://reviews.llvm.org/D108752
Loading
Please sign in to comment