We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7d0d4d commit a71f523Copy full SHA for a71f523
asio/include/asio/detail/config.hpp
@@ -2122,7 +2122,11 @@
2122
# if __has_include(<coroutine>)
2123
# define ASIO_HAS_CO_AWAIT 1
2124
# endif // __has_include(<coroutine>)
2125
-# endif // (__cplusplus >= 202002) && (__cpp_impl_coroutine >= 201902)
+# elif (__cplusplus >= 201703) && (__cpp_coroutines >= 201703)
2126
+# if __has_include(<experimental/coroutine>)
2127
+# define ASIO_HAS_CO_AWAIT 1
2128
+# endif // __has_include(<experimental/coroutine>)
2129
+# endif // (__cplusplus >= 201703) && (__cpp_coroutines >= 201703)
2130
# else // (__clang_major__ >= 14)
2131
# if (__cplusplus >= 201703) && (__cpp_coroutines >= 201703)
2132
# if __has_include(<experimental/coroutine>)
0 commit comments