diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-09-14 21:38:53 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-09-14 21:38:53 -0700 |
commit | c91d4b7d3bea0e4d21bea1efaea93f3ccc7257b7 (patch) | |
tree | 64f4ee1eff1369baf132fc37ad33740fd4070451 | |
parent | 60521b49b14a06c53fffca1070eb591c3b4935a9 (diff) | |
download | mu-c91d4b7d3bea0e4d21bea1efaea93f3ccc7257b7.tar.gz |
2193
-rw-r--r-- | 011load.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/011load.cc b/011load.cc index 1e43ead0..a084ba6e 100644 --- a/011load.cc +++ b/011load.cc @@ -128,7 +128,7 @@ bool next_instruction(istream& in, instruction* curr) { } if (p == words.end()) { - raise << "instruction prematurely ended with '<-'\n" << end() << end(); + raise << "instruction prematurely ended with '<-'\n" << end(); return false; } curr->name = *p; @@ -136,7 +136,7 @@ bool next_instruction(istream& in, instruction* curr) { Recipe_ordinal[*p] = Next_recipe_ordinal++; } if (Recipe_ordinal[*p] == 0) { - raise << "Recipe " << *p << " has number 0, which is reserved for IDLE.\n" << end() << end(); + raise << "Recipe " << *p << " has number 0, which is reserved for IDLE.\n" << end(); return false; } curr->operation = Recipe_ordinal[*p]; ++p; |