[libcxx-commits] [PATCH] D103466: [libc++][format] Adds char formatter.
Victor Zverovich via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Sat Jul 17 08:59:33 PDT 2021
vitaut added inline comments.
================
Comment at: libcxx/test/std/utilities/format/format.functions/tests.inc:113
+ test_exception("A precision field isn't allowed in this format-spec",
+ STR("{:.}"), CharT('*'));
+ test_exception("A precision field isn't allowed in this format-spec",
----------------
This should probably be fixed in a different diff but `.` alone is not a prevision field at all: http://eel.is/c++draft/format.string.std.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D103466/new/
https://reviews.llvm.org/D103466
More information about the libcxx-commits
mailing list