diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-10-04 09:03:41 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-10-04 09:03:41 -0700 |
commit | b1cf3bc92d1e29a5711aaf8f6498f0106e4b222a (patch) | |
tree | 34d453e02a84151da82a3a5b6566274014a1dd32 | |
parent | 4379069e8ed25f97822388bbcd7f5f53a0f24d83 (diff) | |
download | mu-b1cf3bc92d1e29a5711aaf8f6498f0106e4b222a.tar.gz |
2237
-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) |