================ @@ -1199,6 +1199,15 @@ template <> struct DocumentListTraits<std::vector<FormatStyle>> { return Seq[Index]; } }; + +template <> struct ScalarEnumerationTraits<FormatStyle::GotoLabelIndentation> { + static void enumeration(IO &IO, FormatStyle::GotoLabelIndentation &Value) { + IO.enumCase(Value, "None", FormatStyle::GLI_None); + IO.enumCase(Value, "Indent", FormatStyle::GLI_Indent); + IO.enumCase(Value, "HalfIndent", FormatStyle::GLI_HalfIndent); + } +}; + ---------------- mydeveloperday wrote:
Ok this should have been in addition to what you had before not instead of https://github.com/llvm/llvm-project/pull/65140 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits