@@ -111,7 +111,7 @@ const char *FormatCategoryToString(FormatCategoryItem item, bool long_name) {
111
111
return " format" ;
112
112
}
113
113
llvm_unreachable (" Fully covered switch above!" );
114
- };
114
+ }
115
115
116
116
#define LLDB_OPTIONS_type_summary_add
117
117
#include " CommandOptions.inc"
@@ -770,11 +770,11 @@ class CommandObjectTypeFormatterDelete : public CommandObjectParsed {
770
770
FormatCategoryItem m_formatter_kind;
771
771
772
772
Options *GetOptions () override { return &m_options; }
773
-
774
- static constexpr const char *g_short_help_template =
773
+
774
+ static constexpr const char *g_short_help_template =
775
775
" Delete an existing %s for a type." ;
776
776
777
- static constexpr const char *g_long_help_template =
777
+ static constexpr const char *g_long_help_template =
778
778
" Delete an existing %s for a type. Unless you specify a "
779
779
" specific category or all categories, only the "
780
780
" 'default' category is searched. The names must be exactly as "
@@ -783,9 +783,9 @@ class CommandObjectTypeFormatterDelete : public CommandObjectParsed {
783
783
public:
784
784
CommandObjectTypeFormatterDelete (CommandInterpreter &interpreter,
785
785
FormatCategoryItem formatter_kind)
786
- : CommandObjectParsed(interpreter,
786
+ : CommandObjectParsed(interpreter,
787
787
FormatCategoryToString (formatter_kind, false )),
788
- m_formatter_kind(formatter_kind) {
788
+ m_formatter_kind(formatter_kind) {
789
789
CommandArgumentEntry type_arg;
790
790
CommandArgumentData type_style_arg;
791
791
@@ -795,10 +795,10 @@ class CommandObjectTypeFormatterDelete : public CommandObjectParsed {
795
795
type_arg.push_back (type_style_arg);
796
796
797
797
m_arguments.push_back (type_arg);
798
-
798
+
799
799
const char *kind = FormatCategoryToString (formatter_kind, true );
800
800
const char *short_kind = FormatCategoryToString (formatter_kind, false );
801
-
801
+
802
802
StreamString s;
803
803
s.Printf (g_short_help_template, kind);
804
804
SetHelp (s.GetData ());
0 commit comments