[Lldb-commits] [lldb] be71d4c - [lldb][NFCI] Delete commented out method OptionValueProperties::GetQualifiedName

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Fri May 12 12:33:40 PDT 2023


Author: Alex Langford
Date: 2023-05-12T12:33:25-07:00
New Revision: be71d4cc5010cf6e52aafc430691afd12a1c07c6

URL: https://github.com/llvm/llvm-project/commit/be71d4cc5010cf6e52aafc430691afd12a1c07c6
DIFF: https://github.com/llvm/llvm-project/commit/be71d4cc5010cf6e52aafc430691afd12a1c07c6.diff

LOG: [lldb][NFCI] Delete commented out method OptionValueProperties::GetQualifiedName

Added: 
    

Modified: 
    lldb/include/lldb/Interpreter/OptionValueProperties.h
    lldb/source/Interpreter/OptionValueProperties.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/include/lldb/Interpreter/OptionValueProperties.h b/lldb/include/lldb/Interpreter/OptionValueProperties.h
index 5a6bf2a81e4b8..e20ba2c3af71b 100644
--- a/lldb/include/lldb/Interpreter/OptionValueProperties.h
+++ b/lldb/include/lldb/Interpreter/OptionValueProperties.h
@@ -63,9 +63,6 @@ class OptionValueProperties
 
   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 a061c41982fc9..36d732d2d25e1 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 {


        


More information about the lldb-commits mailing list