2
0
mirror of https://github.com/boostorg/asio.git synced 2026-02-24 14:22:08 +00:00

Fix to compile with MSVC 7.1.

[SVN r48527]
This commit is contained in:
Christopher Kohlhoff
2008-09-02 08:46:46 +00:00
parent 8726d4169c
commit f5caaa00d2

View File

@@ -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<Handler> op_type;