about summary refs log tree commit diff stats
path: root/056shape_shifting_recipe.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-04-20 12:44:38 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-04-20 12:44:38 -0700
commit84537b81bd210ba5eadf618a7858be7db1ae4350 (patch)
tree856fb5f59a3d22285e62069b8bf251d5f4814499 /056shape_shifting_recipe.cc
parentb7df1a7aabd5d4b57629c484daf060bfea2aaef3 (diff)
downloadmu-84537b81bd210ba5eadf618a7858be7db1ae4350.tar.gz
3839
Fix CI.

In the process I also fixed a bug in the tangle/ utility.
Diffstat (limited to '056shape_shifting_recipe.cc')
-rw-r--r--056shape_shifting_recipe.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/056shape_shifting_recipe.cc b/056shape_shifting_recipe.cc
index b6fa093c..e7e60684 100644
--- a/056shape_shifting_recipe.cc
+++ b/056shape_shifting_recipe.cc
@@ -52,6 +52,8 @@ string original_name;
 //: original name is only set during load
 :(before "End Load Recipe Name")
 result.original_name = result.name;
+:(replace "out << \"recipe \" << caller.name;" following "string original_header_label(const recipe& caller)")
+out << "recipe " << caller.original_name;
 
 :(after "Static Dispatch Phase 3")
 candidates = strictly_matching_shape_shifting_variants(inst, variants);