summaryrefslogtreecommitdiff
path: root/src/pipe.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@fastmq.commkdir>2009-09-23 10:22:54 +0200
committerMartin Sustrik <sustrik@fastmq.commkdir>2009-09-23 10:22:54 +0200
commit088a2db6746488c1ce4a73c357caaece50bbdf60 (patch)
treede745dd44f673958c305ae0261e986aa1748d17c /src/pipe.hpp
parent3bd8f83f6d412221e4673ceb90b8ca7fa74ff2f1 (diff)
ZMQII-16: Change "struct zmq_msg_t" to "zmq_msg_t" in C binding
Diffstat (limited to 'src/pipe.hpp')
-rw-r--r--src/pipe.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pipe.hpp b/src/pipe.hpp
index 177b1b4..699e3f7 100644
--- a/src/pipe.hpp
+++ b/src/pipe.hpp
@@ -43,7 +43,7 @@ namespace zmq
void set_endpoint (i_endpoint *endpoint_);
// Reads a message to the underlying pipe.
- bool read (struct zmq_msg_t *msg_);
+ bool read (zmq_msg_t *msg_);
// Ask pipe to terminate.
void term ();
@@ -93,7 +93,7 @@ namespace zmq
// Writes a message to the underlying pipe. Returns false if the
// message cannot be written because high watermark was reached.
- bool write (struct zmq_msg_t *msg_);
+ bool write (zmq_msg_t *msg_);
// Flush the messages downsteam.
void flush ();