diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-07-22 22:42:34 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-07-22 22:42:34 -0700 |
commit | d8f7ec8ec9251e4f4aef179e83d291c7518e984e (patch) | |
tree | 950ef4f910f2a1e0168bbe56532c8ca8ce56bb28 | |
parent | efa4e1242cc78735910927c04b7f9c3e7e58e336 (diff) | |
download | mu-d8f7ec8ec9251e4f4aef179e83d291c7518e984e.tar.gz |
3136
-rw-r--r-- | 028call_reply.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/028call_reply.cc b/028call_reply.cc index 28333b32..636b7fee 100644 --- a/028call_reply.cc +++ b/028call_reply.cc @@ -35,10 +35,8 @@ case RETURN: { Current_routine->calls.pop_front(); // just in case 'main' returns a value, drop it for now if (Current_routine->calls.empty()) goto stop_running_current_routine; - const instruction& caller_instruction = current_instruction(); for (int i = 0; i < SIZE(ingredients); ++i) trace(9998, "run") << "result " << i << " is " << to_string(ingredients.at(i)) << end(); - // make reply products available to caller copy(ingredients.begin(), ingredients.end(), inserter(products, products.begin())); // End Reply |