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

Fix Win64 warnings.

[SVN r58671]
This commit is contained in:
Christopher Kohlhoff
2010-01-04 12:33:42 +00:00
parent f6df78b3dc
commit e918b97ec4

View File

@@ -95,13 +95,13 @@ public:
iocp_service_.post_completion(this, last_error_, bytes_transferred_);
}
void on_immediate_completion(DWORD last_error, size_t bytes_transferred)
void on_immediate_completion(DWORD last_error, DWORD bytes_transferred)
{
ready_ = 1;
iocp_service_.post_completion(this, last_error, bytes_transferred);
}
bool on_completion(DWORD last_error, size_t bytes_transferred)
bool on_completion(DWORD last_error, DWORD bytes_transferred)
{
if (last_error_ == ~DWORD(0))
{
@@ -134,7 +134,7 @@ public:
win_iocp_io_service& iocp_service_;
long ready_;
DWORD last_error_;
std::size_t bytes_transferred_;
DWORD bytes_transferred_;
invoke_func_type invoke_func_;
destroy_func_type destroy_func_;
};