From d0a66c379383ff5cb10e25e6d04bd77d9e023ae9 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Mon, 11 Apr 2022 20:31:08 +0200 Subject: [PATCH] fixed issues for macos/clang --- contrib/epee/include/net/levin_client.inl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/epee/include/net/levin_client.inl b/contrib/epee/include/net/levin_client.inl index c55d5ce3..62089afa 100644 --- a/contrib/epee/include/net/levin_client.inl +++ b/contrib/epee/include/net/levin_client.inl @@ -109,7 +109,7 @@ namespace epee template int levin_client_impl_t::notify(int command, const std::string& in_buff) { - if (!is_connected()) + if (!this->is_connected()) return -1; bucket_head head = { 0 }; @@ -130,7 +130,7 @@ namespace epee template int levin_client_impl2::invoke(int command, const std::string& in_buff, std::string& buff_out) { - if (!is_connected()) + if (!this->is_connected()) return -1; bucket_head2 head = { 0 }; @@ -180,7 +180,7 @@ namespace epee template int levin_client_impl2::notify(int command, const std::string& in_buff) { - if (!is_connected()) + if (!this->is_connected()) return -1; bucket_head2 head = { 0 };