[libcxx-commits] [PATCH] D121514: [libc++][format] Improve format-arg-store.
Mark de Wever via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Mar 23 14:28:04 PDT 2022
Mordante added inline comments.
================
Comment at: libcxx/include/__format/format_arg_store.h:304
+_LIBCPP_HIDE_FROM_ABI void __store_data(char* __data, _Args&&... __args) noexcept {
+ (__store_data_element<_Context>(__data, _VSTD::forward<_Args>(__args)), ...);
+}
----------------
Originally `__store_data_element` was a lambda function. This however resulted in an ICE.
This looks like https://github.com/llvm/llvm-project/issues/22200
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D121514/new/
https://reviews.llvm.org/D121514
More information about the libcxx-commits
mailing list