wallace added inline comments.
================
Comment at: lldb/include/lldb/Target/Trace.h:386-396
+ llvm::DenseMap<lldb::tid_t, std::unordered_map<std::string, size_t>>
m_live_thread_data;
+
/// data kind -> size
std::unordered_map<std::string, size_t> m_live_process_data;
+ /// \}
+
----------------
jj10306 wrote:
> Why not change all the maps to DenseMap while we're at it?
interestingly DenseMap doesn't know how to work with std::strings as key, only
with const char *. Maybe they want to force a comparison by pointer and not by
string content.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D123281/new/
https://reviews.llvm.org/D123281
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits