[libcxx-commits] [PATCH] D58019: Add is_nothrow_convertible (P0758R1)
Zoe Carver via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Feb 12 10:40:55 PST 2019
zoecarver added a comment.
@ldionne just for reference, this is what it would look like to use `is_nothrow_constructible`:
template <typename _Fm, typename _To>
struct is_nothrow_convertible : __and_<
is_convertible<_Fm, _To>,
__libcpp_is_nothrow_constructible<true, true, _Fm, _To>
>::type { };
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D58019/new/
https://reviews.llvm.org/D58019
More information about the libcxx-commits
mailing list