[Lldb-commits] [lldb] [lldb][Formatters] Add --pointer-match-depth option to `type summary add` command. (PR #138209)
via lldb-commits
lldb-commits at lists.llvm.org
Thu May 1 15:57:22 PDT 2025
================
@@ -96,6 +97,8 @@ class FormattersMatchCandidate {
bool DidStripTypedef() const { return m_flags.stripped_typedef; }
+ uint32_t GetPtrStrippedDepth() const { return m_ptr_stripped_depth; }
----------------
jimingham wrote:
I think this reads better as GetPtrStrippingDepth than GetPtrStrippedDepth. You aren't asking about something that has been done, but about a thing you are planning to do, so active seems more appropriate.
https://github.com/llvm/llvm-project/pull/138209
More information about the lldb-commits
mailing list