From d68c4583edfc3b680e2305db1e8f9073eff82df0 Mon Sep 17 00:00:00 2001 From: Marcelo Zimbres Date: Sat, 2 Nov 2024 12:37:01 +0100 Subject: [PATCH] Update to support Asio latest changes. --- CMakeLists.txt | 1 - test/test_conn_push.cpp | 4 ++-- test/test_conn_run_cancel.cpp | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b86c4264..35df41fc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,7 +38,6 @@ if (BOOST_REDIS_MAIN_PROJECT) align context core - coroutine static_assert pool date_time diff --git a/test/test_conn_push.cpp b/test/test_conn_push.cpp index ff2a9356..2cc13ab4 100644 --- a/test/test_conn_push.cpp +++ b/test/test_conn_push.cpp @@ -9,7 +9,7 @@ #include #include #include -#include +#include #define BOOST_TEST_MODULE conn-push #include #include @@ -21,7 +21,7 @@ namespace redis = boost::redis; using boost::redis::operation; using connection = boost::redis::connection; using error_code = boost::system::error_code; -using net::experimental::as_tuple; +using net::as_tuple; using boost::redis::request; using boost::redis::response; using boost::redis::ignore; diff --git a/test/test_conn_run_cancel.cpp b/test/test_conn_run_cancel.cpp index 425367e0..f4f0b73d 100644 --- a/test/test_conn_run_cancel.cpp +++ b/test/test_conn_run_cancel.cpp @@ -15,14 +15,14 @@ #ifdef BOOST_ASIO_HAS_CO_AWAIT #include -#include +#include namespace net = boost::asio; using boost::redis::operation; using boost::redis::connection; using boost::system::error_code; -using net::experimental::as_tuple; +using net::as_tuple; using boost::redis::request; using boost::redis::response; using boost::redis::ignore;