[libcxx-commits] [PATCH] D58019: Add is_nothrow_convertible (P0758R1)
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Feb 27 09:57:31 PST 2019
ldionne closed this revision.
ldionne added a comment.
Committed as r355010.
Thanks for the patch!
================
Comment at: test/std/type_traits/is_nothrow_convertible.pass.cpp:51
+ static_assert(!(std::is_nothrow_convertible_v<int[10], A[10]>), "");
+
+ typedef void V();
----------------
Watch for trailing whitespace like this (I removed it when applying the patch). You can probably configure your editor to remove it automatically.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D58019/new/
https://reviews.llvm.org/D58019
More information about the libcxx-commits
mailing list