================ @@ -586,7 +586,8 @@ template <> struct ScalarEnumerationTraits<FormatStyle::SeparateDefinitionStyle> { static void enumeration(IO &IO, FormatStyle::SeparateDefinitionStyle &Value) { IO.enumCase(Value, "Leave", FormatStyle::SDS_Leave); - IO.enumCase(Value, "Always", FormatStyle::SDS_Always); + IO.enumCase(Value, "One", FormatStyle::SDS_One); + IO.enumCase(Value, "Two", FormatStyle::SDS_Two); IO.enumCase(Value, "Never", FormatStyle::SDS_Never); } ---------------- HazardyKnusperkeks wrote:
Thanks. That apparently was an oversight when the option was added. https://github.com/llvm/llvm-project/pull/77918 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits