0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-28 16:15:23 +08:00

Fix spaces before comments

This commit is contained in:
Uli Köhler 2013-08-19 14:45:29 +02:00
parent 9c2740d9fa
commit a28c38efa5

View File

@ -105,13 +105,13 @@ namespace zmq
enum type_t
{
type_min = 101,
// VSM messages store the content in the message itself
// VSM messages store the content in the message itself
type_vsm = 101,
// LMSG messages store the content in malloc-ed memory
// LMSG messages store the content in malloc-ed memory
type_lmsg = 102,
// Delimiter messages are used in envelopes
// Delimiter messages are used in envelopes
type_delimiter = 103,
// CMSG messages point to constant data
// CMSG messages point to constant data
type_cmsg = 104,
type_max = 104
};