summaryrefslogtreecommitdiff
path: root/src/select.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2011-01-13 11:44:23 +0100
committerMartin Sustrik <sustrik@250bpm.com>2011-01-13 11:44:23 +0100
commit18f29ded6a83875c27395d254c25e3d152ae1cc6 (patch)
treebbfc85e87d032d00fb054dac0572262f5901a1ae /src/select.hpp
parent70513871082462c957e46986040ebe7b10d64557 (diff)
Make cppcheck not complain about "'operator=' should return something"
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/select.hpp')
-rw-r--r--src/select.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/select.hpp b/src/select.hpp
index 916b87b..b3fae19 100644
--- a/src/select.hpp
+++ b/src/select.hpp
@@ -106,7 +106,7 @@ namespace zmq
thread_t worker;
select_t (const select_t&);
- void operator = (const select_t&);
+ const select_t &operator = (const select_t&);
};
}