about summary refs log tree commit diff stats
path: root/027call_ingredient.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-06-29 09:49:35 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-06-29 09:49:35 -0700
commitd9630e06d8b520614bc263b7f0256a3baf7a6ef9 (patch)
treebb076e36b85508b32f3715b558a3a9febed386ed /027call_ingredient.cc
parent558bf3d388ee75cc3f37ba27b097af2f73e20b52 (diff)
downloadmu-d9630e06d8b520614bc263b7f0256a3baf7a6ef9.tar.gz
3074
Thanks Ella Couch for finding this bug.
Diffstat (limited to '027call_ingredient.cc')
-rw-r--r--027call_ingredient.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/027call_ingredient.cc b/027call_ingredient.cc
index fe9db13c..b9195658 100644
--- a/027call_ingredient.cc
+++ b/027call_ingredient.cc
@@ -172,7 +172,8 @@ case INGREDIENT: {
 
 //: a particularly common array type is the string, or address:array:character
 :(code)
-bool is_mu_string(const reagent& x) {
+bool is_mu_string(reagent/*copy*/ x) {
+  // Begin is_mu_string(x)
   return x.type
     && x.type->value == get(Type_ordinal, "address")
     && x.type->right