[libcxx-commits] [PATCH] D93166: [libc++][format] Add basic_format_parse_context.

Mark de Wever via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Sat Dec 12 11:04:23 PST 2020


Mordante created this revision.
Mordante added reviewers: EricWF, ldionne, mclow.lists, miscco, curdeius.
Mordante requested review of this revision.
Herald added a project: libc++.
Herald added a subscriber: libcxx-commits.
Herald added a reviewer: libc++.

For the exception throwing function there are two alternatives:

- `__throw_format_error` in the std namespace,
- `__throw__error` in an implementation detail namespace named `__format`.

Since the format header will have more implementation details the latter
alternative has been used.

Implemnts parts of:

- P0645 Text Formatting

Depends on D92214 <https://reviews.llvm.org/D92214>


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D93166

Files:
  libcxx/include/format
  libcxx/test/std/utilities/format/format.formatter/format.parse.ctx/advance_to.pass.cpp
  libcxx/test/std/utilities/format/format.formatter/format.parse.ctx/begin.pass.cpp
  libcxx/test/std/utilities/format/format.formatter/format.parse.ctx/check_arg_id.pass.cpp
  libcxx/test/std/utilities/format/format.formatter/format.parse.ctx/ctor.pass.cpp
  libcxx/test/std/utilities/format/format.formatter/format.parse.ctx/end.pass.cpp
  libcxx/test/std/utilities/format/format.formatter/format.parse.ctx/next_arg_id.pass.cpp
  libcxx/test/std/utilities/format/format.formatter/format.parse.ctx/types.compile.pass.cpp

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D93166.311403.patch
Type: text/x-patch
Size: 15519 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20201212/a8557cd7/attachment.bin>


More information about the libcxx-commits mailing list