From 76bf08631fb467f357c16670f8f97d2b45ec5868 Mon Sep 17 00:00:00 2001 From: Christopher Kohlhoff Date: Wed, 3 Sep 2008 08:56:43 +0000 Subject: [PATCH] Oops, changeset 48535 accidentally reverted 48527's fix. [SVN r48558] --- include/boost/asio/detail/win_iocp_overlapped_ptr.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/asio/detail/win_iocp_overlapped_ptr.hpp b/include/boost/asio/detail/win_iocp_overlapped_ptr.hpp index 2d1a1155..6ac4834f 100644 --- a/include/boost/asio/detail/win_iocp_overlapped_ptr.hpp +++ b/include/boost/asio/detail/win_iocp_overlapped_ptr.hpp @@ -147,7 +147,7 @@ private: overlapped_operation(const overlapped_operation&); void operator=(const overlapped_operation&); - static void do_completion_impl(operation* op, + static void do_completion_impl(win_iocp_io_service::operation* op, DWORD last_error, size_t bytes_transferred) { // Take ownership of the operation object. @@ -172,7 +172,7 @@ private: bind_handler(handler, ec, bytes_transferred), &handler); } - static void destroy_impl(operation* op) + static void destroy_impl(win_iocp_io_service::operation* op) { // Take ownership of the operation object. typedef overlapped_operation op_type;