Core/Network: Build fix for boost 1.91

Signed-off-by: luis <[email protected]>
This commit is contained in:
Shauren
2026-04-25 08:02:22 -03:00
committed by luis
parent 58bb016e34
commit 7fecc13c8d
+3 -2
View File
@@ -20,7 +20,7 @@
#include <boost/asio/associated_executor.hpp>
#include <boost/asio/async_result.hpp>
#include <boost/asio/detail/handler_cont_helpers.hpp>
#include <boost/asio/handler_continuation_hook.hpp>
#include <boost/outcome/result.hpp>
#include <boost/preprocessor/empty.hpp>
#include <boost/preprocessor/comma.hpp>
@@ -165,7 +165,8 @@ public:
template <typename Handler>
inline bool asio_handler_is_continuation(AsExpectedHandler<Handler>* this_handler)
{
return boost_asio_handler_cont_helpers::is_continuation(this_handler->handler_);
using boost::asio::asio_handler_is_continuation;
return asio_handler_is_continuation(std::addressof(this_handler->handler_));
}
template <typename Signature>