[libcxx-commits] [PATCH] D125606: [libc++][format] Improve string formatters

Nikolas Klauser via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Sat May 14 06:12:09 PDT 2022


philnik added inline comments.


================
Comment at: libcxx/include/__format/parser_std_format_spec.h:1538
+  __sign __sign_ : 2 {__sign::__default};
+  uint8_t __alternate_form_ : 1 {false};
+  uint8_t __zero_padding_ : 1 {false};
----------------
Why not use `bool`?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D125606



More information about the libcxx-commits mailing list