about summary refs log tree commit diff stats
path: root/031address.cc
diff options
context:
space:
mode:
Diffstat (limited to '031address.cc')
-rw-r--r--031address.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/031address.cc b/031address.cc
index f0657b98..997e3c65 100644
--- a/031address.cc
+++ b/031address.cc
@@ -45,16 +45,13 @@ recipe main [
 :(code)
 reagent canonize(reagent x) {
   if (is_literal(x)) return x;
-//?   cout << "canonize\n"; //? 1
   reagent r = x;
-//?   cout << x.to_string() << " => " << r.to_string() << '\n'; //? 1
   while (has_property(r, "lookup"))
     r = lookup_memory(r);
   return r;
 }
 
 reagent lookup_memory(reagent x) {
-//?   cout << "lookup_memory: " << x.to_string() << "\n"; //? 2
   static const type_ordinal ADDRESS = Type_ordinal["address"];
   reagent result;
   if (x.types.empty() || x.types.at(0) != ADDRESS) {