diff options
-rw-r--r-- | 031address.cc | 2 | ||||
-rw-r--r-- | 048check_type_by_name.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/031address.cc b/031address.cc index d5f00b56..4f5b307a 100644 --- a/031address.cc +++ b/031address.cc @@ -190,7 +190,7 @@ Recipe_ordinal["$dump"] = _DUMP; :(before "End Primitive Recipe Implementations") case _DUMP: { reagent after_canonize = canonize(current_instruction().ingredients.at(0)); - cerr << maybe(current_recipe_name()) << "" << current_instruction().ingredients.at(0).name << ' ' << no_scientific(current_instruction().ingredients.at(0).value) << " => " << no_scientific(after_canonize.value) << " => " << no_scientific(Memory[after_canonize.value]) << '\n'; + cerr << maybe(current_recipe_name()) << current_instruction().ingredients.at(0).name << ' ' << no_scientific(current_instruction().ingredients.at(0).value) << " => " << no_scientific(after_canonize.value) << " => " << no_scientific(Memory[after_canonize.value]) << '\n'; break; } diff --git a/048check_type_by_name.cc b/048check_type_by_name.cc index 26920057..cd113631 100644 --- a/048check_type_by_name.cc +++ b/048check_type_by_name.cc @@ -42,7 +42,7 @@ void check_metadata(map<string, vector<type_ordinal> >& metadata, const reagent& if (metadata.find(x.name) == metadata.end()) metadata[x.name] = x.types; if (metadata[x.name] != x.types) - raise << maybe(Recipe[r].name) << "" << x.name << " used with multiple types\n" << end(); + raise << maybe(Recipe[r].name) << x.name << " used with multiple types\n" << end(); } :(scenario transform_fills_in_missing_types) |