summaryrefslogtreecommitdiff
path: root/lldb
diff options
context:
space:
mode:
authorAlex Langford <alangford@apple.com>2023-05-12 12:33:07 -0700
committerAlex Langford <alangford@apple.com>2023-05-12 12:33:25 -0700
commitbe71d4cc5010cf6e52aafc430691afd12a1c07c6 (patch)
tree281f9b88585b18928183bef0a4344d0f55451378 /lldb
parentd66417f0ae9d6b5e1be9b80c0c3630601169818d (diff)
downloadllvm-be71d4cc5010cf6e52aafc430691afd12a1c07c6.tar.gz
[lldb][NFCI] Delete commented out method OptionValueProperties::GetQualifiedName
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 {