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 };