File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
libcxx/include/experimental Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ struct __coroutine_traits_sfinae<
81
81
};
82
82
83
83
template <typename _Ret, typename ... _Args>
84
- struct _LIBCPP_TEMPLATE_VIS coroutine_traits
84
+ struct coroutine_traits
85
85
: public __coroutine_traits_sfinae<_Ret>
86
86
{
87
87
};
@@ -298,7 +298,7 @@ noop_coroutine_handle noop_coroutine() _NOEXCEPT {
298
298
}
299
299
#endif // __has_builtin(__builtin_coro_noop)
300
300
301
- struct _LIBCPP_TYPE_VIS suspend_never {
301
+ struct suspend_never {
302
302
_LIBCPP_INLINE_VISIBILITY
303
303
bool await_ready () const _NOEXCEPT { return true ; }
304
304
_LIBCPP_INLINE_VISIBILITY
@@ -307,7 +307,7 @@ struct _LIBCPP_TYPE_VIS suspend_never {
307
307
void await_resume () const _NOEXCEPT {}
308
308
};
309
309
310
- struct _LIBCPP_TYPE_VIS suspend_always {
310
+ struct suspend_always {
311
311
_LIBCPP_INLINE_VISIBILITY
312
312
bool await_ready () const _NOEXCEPT { return false ; }
313
313
_LIBCPP_INLINE_VISIBILITY
You can’t perform that action at this time.
0 commit comments