diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2010-10-15 11:29:20 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2010-10-15 11:29:20 +0200 |
commit | 17b0785744287d0897175ed13000fba710c2dc5b (patch) | |
tree | 4005a7216c6e6349a94e1f865fd8284b8842e0ff | |
parent | 3e74a439c4b7901f3d3607a2d4142266bc1781b4 (diff) |
Destructor of poller_base_t made virtual.
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
-rw-r--r-- | src/poller_base.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/poller_base.hpp b/src/poller_base.hpp index f607d94..80a4025 100644 --- a/src/poller_base.hpp +++ b/src/poller_base.hpp @@ -33,7 +33,7 @@ namespace zmq public: poller_base_t (); - ~poller_base_t (); + virtual ~poller_base_t (); // Returns load of the poller. Note that this function can be // invoked from a different thread! |