about summary refs log tree commit diff stats
path: root/010vm.cc
diff options
context:
space:
mode:
Diffstat (limited to '010vm.cc')
-rw-r--r--010vm.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/010vm.cc b/010vm.cc
index 6512158c..92721d32 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -434,6 +434,7 @@ string instruction::to_string() const {
 string debug_string(const recipe& x) {
   ostringstream out;
   out << "recipe " << x.name << '\n';
+  // Begin debug_string(recipe x)
   for (long long int index = 0; index < SIZE(x.steps); ++index) {
     const instruction& inst = x.steps.at(index);
     out << "  inst: " << inst.to_string() << '\n';