diff options
Diffstat (limited to '028call_reply.cc')
-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 |