[libcxx-commits] [PATCH] D103433: [libc++][format] Adds integer formatter.

Victor Zverovich via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Sun Jul 18 06:13:58 PDT 2021


vitaut added inline comments.


================
Comment at: libcxx/include/__format/formatter_integral.h:548
+private:
+  bool __negative{false};
+};
----------------
In general formatters should only contain information derived from the format string, not from the value. Among other things this would inhibit format string compilation in the future. Please remove.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D103433



More information about the libcxx-commits mailing list