summaryrefslogtreecommitdiff
path: root/lldb
diff options
context:
space:
mode:
Diffstat (limited to 'lldb')
-rw-r--r--lldb/include/lldb/Interpreter/OptionValueProperties.h3
-rw-r--r--lldb/source/Interpreter/OptionValueProperties.cpp19
2 files changed, 0 insertions, 22 deletions
diff --git a/lldb/include/lldb/Interpreter/OptionValueProperties.h b/lldb/include/lldb/Interpreter/OptionValueProperties.h
index 5a6bf2a81e4b..e20ba2c3af71 100644
--- a/lldb/include/lldb/Interpreter/OptionValueProperties.h
+++ b/lldb/include/lldb/Interpreter/OptionValueProperties.h
@@ -63,9 +63,6 @@ public:
void Initialize(const PropertyDefinitions &setting_definitions);
- // bool
- // GetQualifiedName (Stream &strm);
-
// Subclass specific functions
// Get the index of a property given its exact name in this property
diff --git a/lldb/source/Interpreter/OptionValueProperties.cpp b/lldb/source/Interpreter/OptionValueProperties.cpp
index a061c41982fc..36d732d2d25e 100644
--- a/lldb/source/Interpreter/OptionValueProperties.cpp
+++ b/lldb/source/Interpreter/OptionValueProperties.cpp
@@ -51,25 +51,6 @@ void OptionValueProperties::AppendProperty(ConstString name,
m_name_to_index.Sort();
}
-// bool
-// OptionValueProperties::GetQualifiedName (Stream &strm)
-//{
-// bool dumped_something = false;
-//// lldb::OptionValuePropertiesSP parent_sp(GetParent ());
-//// if (parent_sp)
-//// {
-//// parent_sp->GetQualifiedName (strm);
-//// strm.PutChar('.');
-//// dumped_something = true;
-//// }
-// if (m_name)
-// {
-// strm << m_name;
-// dumped_something = true;
-// }
-// return dumped_something;
-//}
-//
lldb::OptionValueSP
OptionValueProperties::GetValueForKey(const ExecutionContext *exe_ctx,
ConstString key) const {