diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-11-10 20:20:45 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-11-10 20:20:45 -0800 |
commit | 0fe9e1ffc78b2e116c011a268d4756b242c2109e (patch) | |
tree | 8b9d35b35453f93b6f3e71b6514dd48c6f2458b5 | |
parent | d11bf88295f03debbf39a51e329a11a9de087580 (diff) | |
download | mu-0fe9e1ffc78b2e116c011a268d4756b242c2109e.tar.gz |
2420
-rw-r--r-- | 036call_reply.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/036call_reply.cc b/036call_reply.cc index 97853a2b..b453188a 100644 --- a/036call_reply.cc +++ b/036call_reply.cc @@ -40,7 +40,6 @@ case REPLY: { break; } for (long long int i = 0; i < SIZE(caller_instruction.products); ++i) { - if (has_property(caller_instruction.products.at(i), "skiptypecheck")) continue; // todo: drop this once we have generic containers if (!types_match(caller_instruction.products.at(i), reply_inst.ingredients.at(i))) { raise_error << maybe(callee) << "reply ingredient " << reply_inst.ingredients.at(i).original_string << " can't be saved in " << caller_instruction.products.at(i).original_string << '\n' << end(); reagent lhs = reply_inst.ingredients.at(i); |