Core/Network: Build fix for boost 1.91
Signed-off-by: luis <[email protected]>
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user