about summary refs log tree commit diff stats
path: root/082persist.cc
diff options
context:
space:
mode:
Diffstat (limited to '082persist.cc')
-rw-r--r--082persist.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/082persist.cc b/082persist.cc
index 3535e427..9d2a6d63 100644
--- a/082persist.cc
+++ b/082persist.cc
@@ -35,7 +35,6 @@ case RESTORE: {
 
 :(code)
 string slurp(const string& filename) {
-//?   cerr << filename << '\n'; //? 1
   ostringstream result;
   ifstream fin(filename.c_str());
   fin.peek();
@@ -48,7 +47,6 @@ string slurp(const string& filename) {
     result << buf;
   }
   fin.close();
-//?   cerr << "=> " << result.str(); //? 1
   return result.str();
 }