diff options
author | mikhnenko <mikhnenko@yandex-team.com> | 2024-01-31 02:38:46 +0300 |
---|---|---|
committer | mikhnenko <mikhnenko@yandex-team.com> | 2024-01-31 02:57:26 +0300 |
commit | bae5703d48e419cfd313f6abf4e904c35635b1b1 (patch) | |
tree | 988291801d86521456192bd61c7c224818a80afa | |
parent | f4af0ac174109622a612bb0e04cbef8a170b68c5 (diff) | |
download | ydb-bae5703d48e419cfd313f6abf4e904c35635b1b1.tar.gz |
Fix boost asio config
-rw-r--r-- | contrib/restricted/boost/asio/include/boost/asio/detail/config.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/restricted/boost/asio/include/boost/asio/detail/config.hpp b/contrib/restricted/boost/asio/include/boost/asio/detail/config.hpp index 4c8dbe8347..c810625592 100644 --- a/contrib/restricted/boost/asio/include/boost/asio/detail/config.hpp +++ b/contrib/restricted/boost/asio/include/boost/asio/detail/config.hpp @@ -1451,9 +1451,9 @@ # endif // !defined(BOOST_ASIO_DISABLE_CO_AWAIT) # if defined(__clang__) # if (__cpp_coroutines >= 201703) -# if __has_include(<experimental/coroutine>) +# if __has_include(<coroutine>) # define BOOST_ASIO_HAS_CO_AWAIT 1 -# endif // __has_include(<experimental/coroutine>) +# endif // __has_include(<coroutine>) # endif // (__cpp_coroutines >= 201703) # endif // defined(__clang__) #endif // !defined(BOOST_ASIO_HAS_CO_AWAIT) |