mrs_lib
Various reusable classes, functions and utilities for use in MRS projects
Loading...
Searching...
No Matches
attributes.hpp
1#ifndef MRS_LIB_CORO_INTERNAL_ATTRIBUTES_HPP_
2#define MRS_LIB_CORO_INTERNAL_ATTRIBUTES_HPP_
3
4#ifdef __clang__
5#define MRS_LIB_INTERNAL_CORO_RETURN_TYPE [[clang::coro_return_type]]
6#define MRS_LIB_INTERNAL_CORO_WRAPPER [[clang::coro_wrapper]]
7#define MRS_LIB_INTERNAL_CORO_LIFETIMEBOUND [[clang::coro_lifetimebound]]
8#else
9#define MRS_LIB_INTERNAL_CORO_RETURN_TYPE
10#define MRS_LIB_INTERNAL_CORO_WRAPPER
11#define MRS_LIB_INTERNAL_CORO_LIFETIMEBOUND
12#endif
13
14#endif // MRS_LIB_CORO_INTERNAL_ATTRIBUTES_HPP_