From a28c38efa5084ba92ec98f1f055bbe22881548a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Uli=20K=C3=B6hler?= Date: Mon, 19 Aug 2013 14:45:29 +0200 Subject: [PATCH] Fix spaces before comments --- src/msg.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/msg.hpp b/src/msg.hpp index caa193f6..bac1f09a 100644 --- a/src/msg.hpp +++ b/src/msg.hpp @@ -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 };