Skip to content

Commit dfbe219

Browse files
committed
try to fix CI
1 parent abbb273 commit dfbe219

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
@@ -73,7 +73,7 @@ struct __invoke_result {
7373
};
7474

7575
template <class... _Args>
76-
__invoke_result_t<_Args...> __invoke(_Args&&... __args)
76+
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR __invoke_result_t<_Args...> __invoke(_Args&&... __args)
7777
_NOEXCEPT_(noexcept(__builtin_invoke(std::forward<_Args>(__args)...))) {
7878
return __builtin_invoke(std::forward<_Args>(__args)...);
7979
}

0 commit comments

Comments
 (0)