[Lldb-commits] [PATCH] D113760: [formatters] Add a libstdcpp formatter for for unordered_map, unordered_set, unordered_multimap, unordered_multiset
walter erquinigo via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Nov 17 12:58:28 PST 2021
wallace requested changes to this revision.
wallace added inline comments.
This revision now requires changes to proceed.
================
Comment at: lldb/examples/synthetic/gnu_libstdcpp.py:22-27
+ def get_object_kind(self, valobj):
+ type_name = valobj.GetTypeName()
+ for kind in ["set", "map"]:
+ if kind in type_name:
+ return kind
+ pass
----------------
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D113760/new/
https://reviews.llvm.org/D113760
More information about the lldb-commits
mailing list