summaryrefslogtreecommitdiff
path: root/src/i_poll_events.hpp
diff options
context:
space:
mode:
authorPiotr Trojanek <piotr.trojanek@gmail.com>2010-06-09 17:06:32 +0200
committerMartin Sustrik <sustrik@250bpm.com>2010-06-09 17:06:32 +0200
commit751b60a18d028d9859394c7abe960cb1c42e605e (patch)
tree0f339a8e99172b1612965cbb4c95c1e4df400336 /src/i_poll_events.hpp
parent240fc33f65c6cd9f1ed0a511daf4ad00ff37f163 (diff)
extra ';' inside a struct or union -- clang warnings fixed
Diffstat (limited to 'src/i_poll_events.hpp')
-rw-r--r--src/i_poll_events.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i_poll_events.hpp b/src/i_poll_events.hpp
index 8b85f7a..6d474b2 100644
--- a/src/i_poll_events.hpp
+++ b/src/i_poll_events.hpp
@@ -28,7 +28,7 @@ namespace zmq
struct i_poll_events
{
- virtual ~i_poll_events () {};
+ virtual ~i_poll_events () {}
// Called by I/O thread when file descriptor is ready for reading.
virtual void in_event () = 0;