From c91d4b7d3bea0e4d21bea1efaea93f3ccc7257b7 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Mon, 14 Sep 2015 21:38:53 -0700 Subject: 2193 --- 011load.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '011load.cc') 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; -- cgit 1.4.1-2-gfad0