diff options
Diffstat (limited to 'src/mutex.hpp')
-rw-r--r-- | src/mutex.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mutex.hpp b/src/mutex.hpp index 7e54096..2793f94 100644 --- a/src/mutex.hpp +++ b/src/mutex.hpp @@ -110,7 +110,7 @@ namespace zmq // Disable copy construction and assignment. mutex_t (const mutex_t&); - void operator = (const mutex_t&); + const mutex_t &operator = (const mutex_t&); }; } |