@@ -61,8 +61,8 @@ namespace llvm {
61
61
namespace yaml {
62
62
template <>
63
63
struct ScalarEnumerationTraits <FormatStyle::BreakBeforeNoexceptSpecifierStyle> {
64
- static void enumeration (IO &IO,
65
- FormatStyle::BreakBeforeNoexceptSpecifierStyle &Value) {
64
+ static void
65
+ enumeration (IO &IO, FormatStyle::BreakBeforeNoexceptSpecifierStyle &Value) {
66
66
IO.enumCase (Value, " Never" , FormatStyle::BBNSS_Never);
67
67
IO.enumCase (Value, " OnlyWithParen" , FormatStyle::BBNSS_OnlyWithParen);
68
68
IO.enumCase (Value, " Always" , FormatStyle::BBNSS_Always);
@@ -3779,16 +3779,6 @@ tooling::Replacements fixNamespaceEndComments(const FormatStyle &Style,
3779
3779
return NamespaceEndCommentsFixer (*Env, Style).process ().first ;
3780
3780
}
3781
3781
3782
- tooling::Replacements separateDefinitionBlocks (const FormatStyle &Style,
3783
- StringRef Code,
3784
- ArrayRef<tooling::Range> Ranges,
3785
- StringRef FileName) {
3786
- auto Env = Environment::make (Code, FileName, Ranges);
3787
- if (!Env)
3788
- return {};
3789
- return DefinitionBlockSeparator (*Env, Style).process ().first ;
3790
- }
3791
-
3792
3782
tooling::Replacements sortUsingDeclarations (const FormatStyle &Style,
3793
3783
StringRef Code,
3794
3784
ArrayRef<tooling::Range> Ranges,
0 commit comments