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.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/010vm.cc b/010vm.cc
index 08da15a3..21dd28d0 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -20,6 +20,7 @@ struct recipe {
   string name;
   vector<instruction> steps;
   // End recipe Fields
+  recipe();
 };
 
 :(before "struct recipe")
@@ -219,6 +220,10 @@ Next_recipe_ordinal = 1000;  // consistent new numbers for each test
 //:: Helpers
 
 :(code)
+recipe::recipe() {
+  // End recipe Constructor
+}
+
 instruction::instruction() :is_label(false), operation(IDLE) {
   // End instruction Constructor
 }