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.
2 parents 7ee0deb + 2999b73 commit 555a410Copy full SHA for 555a410
libcxx/include/__utility/decay_copy.h
@@ -21,9 +21,10 @@
21
_LIBCPP_BEGIN_NAMESPACE_STD
22
23
template <class _Tp>
24
-inline _LIBCPP_INLINE_VISIBILITY typename decay<_Tp>::type __decay_copy(_Tp&& __t)
+_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR
25
+typename decay<_Tp>::type __decay_copy(_Tp&& __t)
26
#if _LIBCPP_STD_VER > 17
- noexcept(is_nothrow_convertible_v<_Tp, remove_reference_t<_Tp> >)
27
+ noexcept(is_nothrow_convertible_v<_Tp, remove_reference_t<_Tp>>)
28
#endif
29
{
30
return _VSTD::forward<_Tp>(__t);
0 commit comments