about summary refs log tree commit diff stats
path: root/010vm.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-06 13:03:10 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-06 13:03:10 -0800
commit7153f7eafbfb80c22ebeb3c1967ebc3960daaa20 (patch)
tree65a3164943f28785996545b0cdc3b4953e7b655f /010vm.cc
parentb8ce12120ac310a20441b46d088010db03c3fa89 (diff)
downloadmu-7153f7eafbfb80c22ebeb3c1967ebc3960daaa20.tar.gz
2635
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) {}