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 af3bcc98..6fb897d0 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -179,6 +179,7 @@ struct type_info {
   kind_of_type kind;
   long long int size;  // only if type is not primitive; primitives and addresses have size 1 (except arrays are dynamic)
   vector<type_tree*> elements;
+  vector<string_tree*> element_type_names;
   vector<string> element_names;
   // End type_info Fields
   type_info() :kind(PRIMITIVE), size(0) {}