File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
lldb/include/lldb/Interpreter Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,6 @@ class OptionValueFormatEntity
2121
2222 ~OptionValueFormatEntity () override = default ;
2323
24- // Virtual subclass pure virtual overrides
25-
2624 OptionValue::Type GetType () const override { return eTypeFormatEntity; }
2725
2826 void DumpValue (const ExecutionContext *exe_ctx, Stream &strm,
@@ -39,18 +37,12 @@ class OptionValueFormatEntity
3937 void AutoComplete (CommandInterpreter &interpreter,
4038 CompletionRequest &request) override ;
4139
42- // Subclass specific functions
43-
44- FormatEntity::Entry &GetCurrentValue () { return m_current_entry; }
45-
4640 const FormatEntity::Entry &GetCurrentValue () const { return m_current_entry; }
4741
4842 void SetCurrentValue (const FormatEntity::Entry &value) {
4943 m_current_entry = value;
5044 }
5145
52- FormatEntity::Entry &GetDefaultValue () { return m_default_entry; }
53-
5446 const FormatEntity::Entry &GetDefaultValue () const { return m_default_entry; }
5547
5648protected:
You can’t perform that action at this time.
0 commit comments