[Lldb-commits] [lldb] [lldb] Remove unused private TypeCategoryMap methods (NFC) (PR #80602)

Dave Lee via lldb-commits lldb-commits at lists.llvm.org
Sun Feb 4 08:08:32 PST 2024


https://github.com/kastiglione created https://github.com/llvm/llvm-project/pull/80602

None

>From 8f2a96e57efb6b073c12903abbe4846f9be4e2ea Mon Sep 17 00:00:00 2001
From: Dave Lee <davelee.com at gmail.com>
Date: Fri, 30 Jun 2023 17:02:02 -0700
Subject: [PATCH] [lldb] Remove unused private TypeCategoryMap methods (NFC)

---
 lldb/include/lldb/DataFormatters/TypeCategoryMap.h | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/lldb/include/lldb/DataFormatters/TypeCategoryMap.h b/lldb/include/lldb/DataFormatters/TypeCategoryMap.h
index efd01f321da92..b1981233378bf 100644
--- a/lldb/include/lldb/DataFormatters/TypeCategoryMap.h
+++ b/lldb/include/lldb/DataFormatters/TypeCategoryMap.h
@@ -94,12 +94,6 @@ class TypeCategoryMap {
 
   MapType m_map;
   ActiveCategoriesList m_active_categories;
-
-  MapType &map() { return m_map; }
-
-  ActiveCategoriesList &active_list() { return m_active_categories; }
-
-  std::recursive_mutex &mutex() { return m_map_mutex; }
 };
 } // namespace lldb_private
 



More information about the lldb-commits mailing list