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
21
21
22
22
~OptionValueFormatEntity () override = default ;
23
23
24
- // Virtual subclass pure virtual overrides
25
-
26
24
OptionValue::Type GetType () const override { return eTypeFormatEntity; }
27
25
28
26
void DumpValue (const ExecutionContext *exe_ctx, Stream &strm,
@@ -39,18 +37,12 @@ class OptionValueFormatEntity
39
37
void AutoComplete (CommandInterpreter &interpreter,
40
38
CompletionRequest &request) override ;
41
39
42
- // Subclass specific functions
43
-
44
- FormatEntity::Entry &GetCurrentValue () { return m_current_entry; }
45
-
46
40
const FormatEntity::Entry &GetCurrentValue () const { return m_current_entry; }
47
41
48
42
void SetCurrentValue (const FormatEntity::Entry &value) {
49
43
m_current_entry = value;
50
44
}
51
45
52
- FormatEntity::Entry &GetDefaultValue () { return m_default_entry; }
53
-
54
46
const FormatEntity::Entry &GetDefaultValue () const { return m_default_entry; }
55
47
56
48
protected:
You can’t perform that action at this time.
0 commit comments