0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-15 10:18:01 +08:00

Merge pull request #93 from cjuniet/master

[LIBZMQ-543] Fix compilation errors with Clang
This commit is contained in:
Pieter Hintjens 2013-07-03 15:42:47 -07:00
commit bd77676d99
5 changed files with 3 additions and 8 deletions

View File

@ -35,8 +35,6 @@
namespace zmq
{
class i_msg_sink;
// Helper base class for decoders that know the amount of data to read
// in advance at any moment. Knowing the amount in advance is a property
// of the protocol used. 0MQ framing protocol is based size-prefixed

View File

@ -40,8 +40,6 @@
namespace zmq
{
class i_msg_source;
// Helper base class for encoders. It implements the state machine that
// fills the outgoing buffer. Derived classes should implement individual
// state machine actions.

View File

@ -26,7 +26,8 @@
namespace zmq
{
class i_msg_sink;
// Forward declaration
struct i_msg_sink;
// Interface to be implemented by message decoder.

View File

@ -27,7 +27,7 @@ namespace zmq
{
// Forward declaration
class i_msg_source;
struct i_msg_source;
// Interface to be implemented by message encoder.

View File

@ -29,8 +29,6 @@
namespace zmq
{
class i_msg_source;
// Encoder for 0MQ framing protocol. Converts messages into data stream.
class v1_encoder_t : public encoder_base_t <v1_encoder_t>