diff options
author | Josh Blum | 2012-09-29 12:11:46 -0700 |
---|---|---|
committer | Josh Blum | 2012-09-29 12:11:46 -0700 |
commit | b194049a9fb5ab60f15bfcca1a53e39a42339244 (patch) | |
tree | 0b66215aae27dff36e05ff5ccd385ce5703f5873 /lib/input_handlers.cpp | |
parent | abfb98c1e4e468b994aecc0899dae9064d2477da (diff) | |
download | sandhi-b194049a9fb5ab60f15bfcca1a53e39a42339244.tar.gz sandhi-b194049a9fb5ab60f15bfcca1a53e39a42339244.tar.bz2 sandhi-b194049a9fb5ab60f15bfcca1a53e39a42339244.zip |
fix for the tokens, were going the wrong direction
Diffstat (limited to 'lib/input_handlers.cpp')
-rw-r--r-- | lib/input_handlers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/input_handlers.cpp b/lib/input_handlers.cpp index d2d12d5..f01ad28 100644 --- a/lib/input_handlers.cpp +++ b/lib/input_handlers.cpp @@ -43,7 +43,7 @@ void BlockActor::handle_input_buffer(const InputBufferMessage &message, const Th void BlockActor::handle_input_token(const InputTokenMessage &message, const Theron::Address) { MESSAGE_TRACER(); - //const size_t index = message.index; + ASSERT(message.index < this->get_num_inputs()); //store the token of the upstream producer this->token_pool.insert(message.token); |