Ct
Size: a a a
Ct
AS
AZ
ПК
AZ
AZ
Ct
D
AZ
AZ
AZ
AS
// msvc compiler options:
// /await /std:c++latest /Zc:__cplusplus
// 64 bit: /await:heapelide
#if __cplusplus && __cplusplus > 201402L
# if __has_include(<coroutine>)
# include <coroutine>
# include <generator>
namespace stdco = std;
# elif __has_include(<experimental/coroutine>)
# include <experimental/coroutine>
# include <experimental/generator>
namespace stdco = std::experimental;
# else
# error coroutine support expected.
# endif
#else
# error modern cplusplus expected.
#endif
AM
Ct
// msvc compiler options:
// /await /std:c++latest /Zc:__cplusplus
// 64 bit: /await:heapelide
#if __cplusplus && __cplusplus > 201402L
# if __has_include(<coroutine>)
# include <coroutine>
# include <generator>
namespace stdco = std;
# elif __has_include(<experimental/coroutine>)
# include <experimental/coroutine>
# include <experimental/generator>
namespace stdco = std::experimental;
# else
# error coroutine support expected.
# endif
#else
# error modern cplusplus expected.
#endif
AS
AZ
AM
AZ
AZ
AZ