This commit is contained in:
Kartik K. Agaram 2015-10-01 16:33:34 -07:00
parent 96bb317f32
commit 16386f766e
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@ void check_instruction(const recipe_ordinal r) {
map<string, vector<type_ordinal> > metadata;
for (long long int i = 0; i < SIZE(Recipe[r].steps); ++i) {
instruction& inst = Recipe[r].steps.at(i);
if (inst.is_label) continue;
switch (inst.operation) {
// Primitive Recipe Checks
case COPY: {