summaryrefslogtreecommitdiff
path: root/boost/asio/windows/basic_object_handle.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/asio/windows/basic_object_handle.hpp')
-rw-r--r--boost/asio/windows/basic_object_handle.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/boost/asio/windows/basic_object_handle.hpp b/boost/asio/windows/basic_object_handle.hpp
index 161bb512f1..a94bb57e26 100644
--- a/boost/asio/windows/basic_object_handle.hpp
+++ b/boost/asio/windows/basic_object_handle.hpp
@@ -125,7 +125,7 @@ public:
void wait()
{
boost::system::error_code ec;
- this->service.wait(this->implementation, ec);
+ this->get_service().wait(this->get_implementation(), ec);
boost::asio::detail::throw_error(ec, "wait");
}
@@ -139,7 +139,7 @@ public:
*/
void wait(boost::system::error_code& ec)
{
- this->service.wait(this->implementation, ec);
+ this->get_service().wait(this->get_implementation(), ec);
}
/// Start an asynchronous wait on the object handle.
@@ -161,7 +161,7 @@ public:
template <typename WaitHandler>
void async_wait(WaitHandler handler)
{
- this->service.async_wait(this->implementation, handler);
+ this->get_service().async_wait(this->get_implementation(), handler);
}
};