diff options
author | Evan Hunt <each@isc.org> | 2010-05-27 20:24:10 +0200 |
---|---|---|
committer | Evan Hunt <each@isc.org> | 2010-05-27 20:24:10 +0200 |
commit | aad8d399e29a653af5f3d810aba1e835b0e29c72 (patch) | |
tree | 724c52cc9d43c67bca39dd7706bd88889f967a29 /ext | |
parent | used a separate internal library for ASIO related code to avoid the unused-pa... (diff) | |
download | kea-aad8d399e29a653af5f3d810aba1e835b0e29c72.tar.xz kea-aad8d399e29a653af5f3d810aba1e835b0e29c72.zip |
checkpoint: reverted convigure.ac change, removed UNUSED_PARAM from asio code
git-svn-id: svn://bind10.isc.org/svn/bind10/branches/trac168@1951 e5f2f494-b856-4b98-b285-d166d9295462
Diffstat (limited to 'ext')
-rw-r--r-- | ext/asio/detail/epoll_reactor.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/asio/detail/epoll_reactor.hpp b/ext/asio/detail/epoll_reactor.hpp index 20ef576198..636739863e 100644 --- a/ext/asio/detail/epoll_reactor.hpp +++ b/ext/asio/detail/epoll_reactor.hpp @@ -207,7 +207,7 @@ public: // Cancel all operations associated with the given descriptor. The // handlers associated with the descriptor will be invoked with the // operation_aborted error. - void cancel_ops(socket_type descriptor UNUSED_PARAM, per_descriptor_data& descriptor_data) + void cancel_ops(socket_type descriptor, per_descriptor_data& descriptor_data) { mutex::scoped_lock descriptor_lock(descriptor_data->mutex_); |