summaryrefslogtreecommitdiff
path: root/src/mtrie.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2011-09-16 16:34:28 +0200
committerMartin Sustrik <sustrik@250bpm.com>2011-09-16 16:34:28 +0200
commite170136a2e00eec2e786441cdc090c3b00a8fbd4 (patch)
tree786ac67e14af4bfc3b5909b2db51935a4f68a206 /src/mtrie.hpp
parent5936379b292dec79efd3a1eaa7cafae4fc6d675a (diff)
More bugs in mtrie fixed
Aside of fixing couple of corner cases this patch turns the 'match' function in mtrie from recursive to iterative. Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/mtrie.hpp')
-rw-r--r--src/mtrie.hpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mtrie.hpp b/src/mtrie.hpp
index 68a3f2c..2c2cc32 100644
--- a/src/mtrie.hpp
+++ b/src/mtrie.hpp
@@ -67,8 +67,6 @@ namespace zmq
void *arg_);
bool rm_helper (unsigned char *prefix_, size_t size_,
class pipe_t *pipe_);
- void match_helper (unsigned char *data_, size_t size_,
- void (*func_) (class pipe_t *pipe_, void *arg_), void *arg_);
typedef std::set <class pipe_t*> pipes_t;
pipes_t pipes;