Problem: formatting inconsistent

Solution: applied clang-format
This commit is contained in:
sigiesec
2018-02-01 11:46:09 +01:00
parent 6d8baea714
commit 41f459e1dc
331 changed files with 13208 additions and 13691 deletions

View File

@@ -34,26 +34,23 @@
namespace zmq
{
// Encoder for ZMTP/1.0 protocol. Converts messages into data batches.
// Encoder for ZMTP/1.0 protocol. Converts messages into data batches.
class v1_encoder_t : public encoder_base_t <v1_encoder_t>
{
public:
class v1_encoder_t : public encoder_base_t<v1_encoder_t>
{
public:
v1_encoder_t (size_t bufsize_);
~v1_encoder_t ();
v1_encoder_t (size_t bufsize_);
~v1_encoder_t ();
private:
void size_ready ();
void message_ready ();
private:
unsigned char tmpbuf[10];
void size_ready ();
void message_ready ();
unsigned char tmpbuf [10];
v1_encoder_t (const v1_encoder_t&);
const v1_encoder_t &operator = (const v1_encoder_t&);
};
v1_encoder_t (const v1_encoder_t &);
const v1_encoder_t &operator= (const v1_encoder_t &);
};
}
#endif