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.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/010vm.cc b/010vm.cc
index 7c2ccba1..ee18a171 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -98,6 +98,8 @@ struct string_tree {
   string_tree(string_tree* l, string_tree* r) :left(l), right(r) {}
 };
 
+// End type_tree Definition
+
 :(before "End Globals")
 // Locations refer to a common 'memory'. Each location can store a number.
 map<int, double> Memory;