Skip to content

Commit abbb273

Browse files
committed
Try to fix CI
1 parent 9317801 commit abbb273

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

libcxx/include/__type_traits/invoke.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@ _LIBCPP_BEGIN_NAMESPACE_STD
6767
template <class... _Args>
6868
using __invoke_result_t = decltype(__builtin_invoke(std::declval<_Args>()...));
6969

70+
template <class... _Args>
71+
struct __invoke_result {
72+
using type _LIBCPP_NODEBUG = __invoke_result_t<_Args...>;
73+
};
74+
7075
template <class... _Args>
7176
__invoke_result_t<_Args...> __invoke(_Args&&... __args)
7277
_NOEXCEPT_(noexcept(__builtin_invoke(std::forward<_Args>(__args)...))) {

0 commit comments

Comments
 (0)