Skip to content

Commit b553022

Browse files
committed
[lldb] Remove dead code and redundant comments (NFC)
1 parent 5d86fb7 commit b553022

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

lldb/include/lldb/Interpreter/OptionValueFormatEntity.h

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff 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

5648
protected:

0 commit comments

Comments
 (0)