Skip to content

Commit

Permalink
Fix -Wmismatched-tags
Browse files Browse the repository at this point in the history
  • Loading branch information
arsenm authored and Matt Arsenault committed Jan 2, 2013
1 parent edb5a05 commit 14d3245
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/i_decoder.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
3 changes: 2 additions & 1 deletion src/i_msg_sink.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
3 changes: 2 additions & 1 deletion src/i_msg_source.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 14d3245

Please sign in to comment.