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:
commit
bd77676d99
@ -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
|
||||
|
@ -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.
|
||||
|
@ -26,7 +26,8 @@
|
||||
namespace zmq
|
||||
{
|
||||
|
||||
class i_msg_sink;
|
||||
// Forward declaration
|
||||
struct i_msg_sink;
|
||||
|
||||
// Interface to be implemented by message decoder.
|
||||
|
||||
|
@ -27,7 +27,7 @@ namespace zmq
|
||||
{
|
||||
|
||||
// Forward declaration
|
||||
class i_msg_source;
|
||||
struct i_msg_source;
|
||||
|
||||
// Interface to be implemented by message encoder.
|
||||
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user