Commit 733c6780 authored by Martin Sustrik's avatar Martin Sustrik

Minor code clean-up to keep clang compiler happy.

"warning: extra ';' inside a struct or union [-pedantic]"
Signed-off-by: 's avatarMartin Sustrik <sustrik@250bpm.com>
parent b95f11aa
......@@ -48,7 +48,7 @@ namespace zmq
struct i_reader_events
{
virtual ~i_reader_events () {};
virtual ~i_reader_events () {}
virtual void terminated (class reader_t *pipe_) = 0;
virtual void activated (class reader_t *pipe_) = 0;
......@@ -118,7 +118,7 @@ namespace zmq
struct i_writer_events
{
virtual ~i_writer_events () {};
virtual ~i_writer_events () {}
virtual void terminated (class writer_t *pipe_) = 0;
virtual void activated (class writer_t *pipe_) = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment