[libcxx-commits] [PATCH] D96664: [libc++][format] Implement formatters.

Victor Zverovich via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Sun Sep 5 07:19:42 PDT 2021


vitaut added inline comments.


================
Comment at: libcxx/include/format:734
+
+inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_AVAILABILITY_FORMAT string
+vformat(string_view __fmt, format_args __args) {
----------------
I know this diff has already landed but you definitely don't want to inline the top-level "v" functions such as `vformat` to reduce per-call code bloat (see e.g. https://godbolt.org/z/f8c1P5bP5).


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D96664



More information about the libcxx-commits mailing list