[libcxx-commits] [PATCH] D132983: Fix std::fpos pretty printer on musl

Louis Dionne via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Wed Sep 7 12:54:56 PDT 2022


ldionne accepted this revision.
ldionne added inline comments.
This revision is now accepted and ready to land.


================
Comment at: libcxx/utils/gdb/libcxx/printers.py:767
+        if "__count" in state_fields and "__value" in state_fields:
+            count = state["__count"]
+            value = state["__value"]["__wch"]
----------------
ccross wrote:
> enh wrote:
> > accidentally introduced tabs?
> I'm not seeing any tabs in my local git CL, in the download raw diff here, or in the "show raw file (right)" output.  I think that must be how phabricator highlights increased indentation?
Tabs should be caught by our CI if introduced. Since it's green, I think it's all good.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D132983/new/

https://reviews.llvm.org/D132983



More information about the libcxx-commits mailing list