From ccc761df3a566e857a9ff114d06d5e085956cabd Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Fri, 18 Nov 2022 13:19:01 +0100 Subject: [PATCH] fixed another linux-specific compilation problem --- contrib/epee/include/net/net_helper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/epee/include/net/net_helper.h b/contrib/epee/include/net/net_helper.h index 65fe6cd5..a3a04e7a 100644 --- a/contrib/epee/include/net/net_helper.h +++ b/contrib/epee/include/net/net_helper.h @@ -668,7 +668,7 @@ namespace epee bool shutdown() { - blocked_mode_client::shutdown(); + blocked_mode_client_t::shutdown(); m_send_deadline.cancel(); return true; } @@ -753,7 +753,7 @@ namespace epee } // Put the actor back to sleep. - m_send_deadline.async_wait(boost::bind(&async_blocked_mode_client::check_send_deadline, this)); + m_send_deadline.async_wait(boost::bind(&async_blocked_mode_client_t::check_send_deadline, this)); } };