Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / include / __coroutine / coroutine_traits.h
blob7122cc8ea8fb2c6b6ff0fdef7433dd6d34f0fb19
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef _LIBCPP___COROUTINE_COROUTINE_TRAITS_H
10 #define _LIBCPP___COROUTINE_COROUTINE_TRAITS_H
12 #include <__config>
13 #include <__type_traits/void_t.h>
15 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
16 # pragma GCC system_header
17 #endif
19 #if _LIBCPP_STD_VER >= 20
21 _LIBCPP_BEGIN_NAMESPACE_STD
23 // [coroutine.traits]
24 // [coroutine.traits.primary]
25 // The header <coroutine> defined the primary template coroutine_traits such that
26 // if ArgTypes is a parameter pack of types and if the qualified-id R::promise_type
27 // is valid and denotes a type ([temp.deduct]), then coroutine_traits<R, ArgTypes...>
28 // has the following publicly accessible memebr:
30 // using promise_type = typename R::promise_type;
32 // Otherwise, coroutine_traits<R, ArgTypes...> has no members.
33 template <class _Tp, class = void>
34 struct __coroutine_traits_sfinae {};
36 template <class _Tp>
37 struct __coroutine_traits_sfinae<
38 _Tp, __void_t<typename _Tp::promise_type> >
40 using promise_type = typename _Tp::promise_type;
43 template <class _Ret, class... _Args>
44 struct coroutine_traits
45 : public __coroutine_traits_sfinae<_Ret>
49 _LIBCPP_END_NAMESPACE_STD
51 #endif // __LIBCPP_STD_VER >= 20
53 #endif // _LIBCPP___COROUTINE_COROUTINE_TRAITS_H