We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3215e36 commit 3f0f8f7Copy full SHA for 3f0f8f7
libcxx/include/__type_traits/is_nothrow_convertible.h
@@ -43,7 +43,7 @@ template <typename _Fm, typename _To>
43
bool_constant<noexcept(std::__test_noexcept<_To>(std::declval<_Fm>()))> __is_nothrow_convertible_test();
44
45
template <typename _Fm, typename _To>
46
-struct __is_nothrow_convertible_helper : decltype(__is_nothrow_convertible_test<_Fm, _To>()) {};
+struct __is_nothrow_convertible_helper : decltype(std::__is_nothrow_convertible_test<_Fm, _To>()) {};
47
48
49
struct is_nothrow_convertible
0 commit comments