Skip to content

Commit 623ba9b

Browse files
committed
[libc++] Add missing _LIBCPP_NODEBUG on internal alias
1 parent 8b879d1 commit 623ba9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/__type_traits/invoke.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ struct __invoke_result
266266
: enable_if<__is_invocable_v<_Func, _Args...>, typename __invokable_r<void, _Func, _Args...>::_Result> {};
267267

268268
template <class _Func, class... _Args>
269-
using __invoke_result_t = typename __invoke_result<_Func, _Args...>::type;
269+
using __invoke_result_t _LIBCPP_NODEBUG = typename __invoke_result<_Func, _Args...>::type;
270270

271271
template <class _Ret, class... _Args>
272272
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _Ret __invoke_r(_Args&&... __args) {

0 commit comments

Comments
 (0)