about summary refs log tree commit diff stats
path: root/032array.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-25 20:47:42 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-25 20:47:42 -0800
commitd0e29245f9d37256093026d5080452db8a694136 (patch)
tree0f6658fa7dc42e7ac30c0641d1bcd562c332f3ec /032array.cc
parentdcc060c7d4ef56b978beb34ddce8d8ffcec94fa6 (diff)
downloadmu-d0e29245f9d37256093026d5080452db8a694136.tar.gz
2707
Diffstat (limited to '032array.cc')
-rw-r--r--032array.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/032array.cc b/032array.cc
index 250e915b..0edf5b2b 100644
--- a/032array.cc
+++ b/032array.cc
@@ -112,7 +112,6 @@ if (r.type && r.type->value == get(Type_ordinal, "array")) {
     raise_error << maybe(current_recipe_name()) << "'" << r.original_string << "' is an array of what?\n" << end();
     return 1;
   }
-//?   trace(9999, "mem") << "computing size of array starting at " << r.value << end();
   return 1 + get_or_insert(Memory, r.value)*size_of(array_element(r.type));
 }