================ @@ -45,15 +45,12 @@ class FormatCache { void Set(lldb::TypeSummaryImplSP); void Set(lldb::SyntheticChildrenSP); }; - typedef std::map<ConstString, Entry> CacheMap; - CacheMap m_map; + std::map<ConstString, Entry> m_entries; ---------------- adrian-prantl wrote:
Could this be a StringMap, or if we benefit from ConstString here, a DenseMap<ConstString, Entry> for faster lookups? https://github.com/llvm/llvm-project/pull/80603 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits