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>2016-09-27 10:21:25 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-27 10:21:25 -0700
commita91e183799b5ba41455c79e648ff4397a27838c4 (patch)
treeadd1f2cdf42811b4ad084a58918251d6bb33f2d6 /056shape_shifting_recipe.cc
parent5cf4bb1d95e22a46ded620e6d40cdbb14bfb1a28 (diff)
downloadmu-a91e183799b5ba41455c79e648ff4397a27838c4.tar.gz
3421
Diffstat (limited to '056shape_shifting_recipe.cc')
-rw-r--r--056shape_shifting_recipe.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/056shape_shifting_recipe.cc b/056shape_shifting_recipe.cc
index fd1190ce..49b6fcdf 100644
--- a/056shape_shifting_recipe.cc
+++ b/056shape_shifting_recipe.cc
@@ -322,10 +322,6 @@ void compute_type_ingredient_mappings(const recipe& exemplar, const instruction&
   }
 }
 
-int min(int a, int b) {
-  return (a < b) ? a : b;
-}
-
 void accumulate_type_ingredients(const reagent& exemplar_reagent, reagent& refinement, map<string, const type_tree*>& mappings, const recipe& exemplar, const instruction& call_instruction, const recipe& caller_recipe, bool* error) {
   assert(refinement.type);
   accumulate_type_ingredients(exemplar_reagent.type, refinement.type, mappings, exemplar, exemplar_reagent, call_instruction, caller_recipe, error);