From 7e4fa8505f479c494b9e7bab361e4a11e1c579a5 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Thu, 16 Feb 2012 10:04:42 +0900 Subject: poller_base_t is used instead of poller_t Poller object is virtualised. You can access poller via its base class (poller_base_t) instead of using poller_t which was a typedef pointing to actual derived class. Signed-off-by: Martin Sustrik --- src/socket_base.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/socket_base.cpp') diff --git a/src/socket_base.cpp b/src/socket_base.cpp index 3854dc2..94b555b 100644 --- a/src/socket_base.cpp +++ b/src/socket_base.cpp @@ -641,7 +641,7 @@ bool xs::socket_base_t::has_out () return xhas_out (); } -void xs::socket_base_t::start_reaping (poller_t *poller_) +void xs::socket_base_t::start_reaping (poller_base_t *poller_) { // Plug the socket to the reaper thread. poller = poller_; -- cgit v1.2.3