[libcxx-commits] [PATCH] D113244: Simplify the libcxx std::string_view gdb pretty printer
Sterling Augustine via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Nov 30 13:12:38 PST 2021
saugustine added inline comments.
================
Comment at: libcxx/utils/gdb/libcxx/printers.py:261
+ return ptr.lazy_string(length=size)
+ return data.string(length=size)
----------------
dblaikie wrote:
> halyavin wrote:
> > What is `data`? Should it be `ptr`?
> Ah, indeed - thanks for the catch.
>
> Separate conversation probably needs to be had about whether we need to support gdb's from 10 years ago that don't support lazy_string (I don't think we do).
No need to hold this over, just never had a reason to clean it up before.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D113244/new/
https://reviews.llvm.org/D113244
More information about the libcxx-commits
mailing list