[libcxx-commits] [PATCH] D135469: [libc++] <type_traits>: Avoid instantiating a pointer type.
Nikolas Klauser via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Sat Nov 19 05:58:38 PST 2022
philnik accepted this revision.
philnik added a comment.
This revision is now accepted and ready to land.
LGTM with green CI.
================
Comment at: libcxx/include/__type_traits/decay.h:45
is_array<_Up>::value,
- __remove_extent_t<_Up>*,
+ __add_pointer_t<__remove_extent_t<_Up>>,
typename conditional
----------------
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D135469/new/
https://reviews.llvm.org/D135469
More information about the libcxx-commits
mailing list