mirror of
https://github.com/zeromq/libzmq.git
synced 2025-03-11 00:16:11 +00:00
Fix -Wmismatched-tags
This commit is contained in:
parent
edb5a05add
commit
14d3245e02
@ -30,8 +30,9 @@ namespace zmq
|
||||
|
||||
// Interface to be implemented by message decoder.
|
||||
|
||||
struct i_decoder
|
||||
class i_decoder
|
||||
{
|
||||
public:
|
||||
virtual ~i_decoder () {}
|
||||
|
||||
virtual void set_msg_sink (i_msg_sink *msg_sink_) = 0;
|
||||
|
@ -29,8 +29,9 @@ namespace zmq
|
||||
|
||||
// Interface to be implemented by message sink.
|
||||
|
||||
struct i_msg_sink
|
||||
class i_msg_sink
|
||||
{
|
||||
public:
|
||||
virtual ~i_msg_sink () {}
|
||||
|
||||
// Delivers a message. Returns 0 if successful; -1 otherwise.
|
||||
|
@ -29,8 +29,9 @@ namespace zmq
|
||||
|
||||
// Interface to be implemented by message source.
|
||||
|
||||
struct i_msg_source
|
||||
class i_msg_source
|
||||
{
|
||||
public:
|
||||
virtual ~i_msg_source () {}
|
||||
|
||||
// Fetch a message. Returns 0 if successful; -1 otherwise.
|
||||
|
Loading…
x
Reference in New Issue
Block a user