diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2017-10-30 12:13:02 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2017-10-30 12:13:02 -0700 |
commit | 3ac371894204b85b7385a38480576e3db2c22b85 (patch) | |
tree | 504a5d96a97127a2a4ab18672b3b3d395e4f8889 | |
parent | 761a3036e76b796a304e855b0676f5ca128120e1 (diff) | |
download | mu-3ac371894204b85b7385a38480576e3db2c22b85.tar.gz |
4095
-rw-r--r-- | 056shape_shifting_recipe.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/056shape_shifting_recipe.cc b/056shape_shifting_recipe.cc index fceb6672..36c405ec 100644 --- a/056shape_shifting_recipe.cc +++ b/056shape_shifting_recipe.cc @@ -116,7 +116,7 @@ bool all_concrete_header_reagents_strictly_match(const instruction& inst, const } // tie-breaker for phase 3 -recipe_ordinal best_shape_shifting_variant(const instruction& inst, vector<recipe_ordinal>& candidates) { +recipe_ordinal best_shape_shifting_variant(const instruction& inst, const vector<recipe_ordinal>& candidates) { assert(!candidates.empty()); if (SIZE(candidates) == 1) return candidates.at(0); // primary score |