summaryrefslogtreecommitdiff
path: root/src/pipe.hpp
diff options
context:
space:
mode:
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 a956ce3..4c94b40 100644
--- a/src/pipe.hpp
+++ b/src/pipe.hpp
@@ -113,7 +113,7 @@ namespace zmq
bool terminating;
reader_t (const reader_t&);
- void operator = (const reader_t&);
+ const reader_t &operator = (const reader_t&);
};
struct i_writer_events
@@ -205,7 +205,7 @@ namespace zmq
bool terminating;
writer_t (const writer_t&);
- void operator = (const writer_t&);
+ const writer_t &operator = (const writer_t&);
};
}