diff options
author | mikhnenko <mikhnenko@yandex-team.com> | 2024-01-31 02:38:46 +0300 |
---|---|---|
committer | Alexander Smirnov <alex@ydb.tech> | 2024-01-31 14:24:21 +0300 |
commit | 636f483b4d31b42e989912db9acb7b451ce0b477 (patch) | |
tree | 6ee9a147ca757feb9656ba92188a22388a98290b | |
parent | 9b7a061abaa0c031c679304b9d54c3dac2c5b05e (diff) | |
download | ydb-636f483b4d31b42e989912db9acb7b451ce0b477.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) |