about summary refs log tree commit diff stats
path: root/cpp/010vm.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/010vm.cc')
-rw-r--r--cpp/010vm.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/010vm.cc b/cpp/010vm.cc
index e38a5958..b24bcfad 100644
--- a/cpp/010vm.cc
+++ b/cpp/010vm.cc
@@ -227,7 +227,7 @@ string instruction::to_string() const {
     out << products[i].to_string();
   }
   if (!products.empty()) out << " <- ";
-  out << name << ' ';
+  out << name << '/' << operation << ' ';
   for (size_t i = 0; i < ingredients.size(); ++i) {
     if (i > 0) out << ", ";
     out << ingredients[i].to_string();