Skip to content

Commit 3f0f8f7

Browse files
committed
Missing qual on Clang 18
1 parent 3215e36 commit 3f0f8f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/__type_traits/is_nothrow_convertible.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ template <typename _Fm, typename _To>
4343
bool_constant<noexcept(std::__test_noexcept<_To>(std::declval<_Fm>()))> __is_nothrow_convertible_test();
4444

4545
template <typename _Fm, typename _To>
46-
struct __is_nothrow_convertible_helper : decltype(__is_nothrow_convertible_test<_Fm, _To>()) {};
46+
struct __is_nothrow_convertible_helper : decltype(std::__is_nothrow_convertible_test<_Fm, _To>()) {};
4747

4848
template <typename _Fm, typename _To>
4949
struct is_nothrow_convertible

0 commit comments

Comments
 (0)