mirror of
https://github.com/zeromq/libzmq.git
synced 2025-03-12 00:55:16 +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.
|
// Interface to be implemented by message decoder.
|
||||||
|
|
||||||
struct i_decoder
|
class i_decoder
|
||||||
{
|
{
|
||||||
|
public:
|
||||||
virtual ~i_decoder () {}
|
virtual ~i_decoder () {}
|
||||||
|
|
||||||
virtual void set_msg_sink (i_msg_sink *msg_sink_) = 0;
|
virtual void set_msg_sink (i_msg_sink *msg_sink_) = 0;
|
||||||
|
@ -29,8 +29,9 @@ namespace zmq
|
|||||||
|
|
||||||
// Interface to be implemented by message sink.
|
// Interface to be implemented by message sink.
|
||||||
|
|
||||||
struct i_msg_sink
|
class i_msg_sink
|
||||||
{
|
{
|
||||||
|
public:
|
||||||
virtual ~i_msg_sink () {}
|
virtual ~i_msg_sink () {}
|
||||||
|
|
||||||
// Delivers a message. Returns 0 if successful; -1 otherwise.
|
// Delivers a message. Returns 0 if successful; -1 otherwise.
|
||||||
|
@ -29,8 +29,9 @@ namespace zmq
|
|||||||
|
|
||||||
// Interface to be implemented by message source.
|
// Interface to be implemented by message source.
|
||||||
|
|
||||||
struct i_msg_source
|
class i_msg_source
|
||||||
{
|
{
|
||||||
|
public:
|
||||||
virtual ~i_msg_source () {}
|
virtual ~i_msg_source () {}
|
||||||
|
|
||||||
// Fetch a message. Returns 0 if successful; -1 otherwise.
|
// Fetch a message. Returns 0 if successful; -1 otherwise.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user