about summary refs log tree commit diff stats
path: root/cpp/010vm
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/010vm')
-rw-r--r--cpp/010vm3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/010vm b/cpp/010vm
index cf064581..2f2268ba 100644
--- a/cpp/010vm
+++ b/cpp/010vm
@@ -99,7 +99,8 @@ struct type_info {
   bool is_record;
   bool is_array;
   vector<type_number> target;  // only if is_address
-  vector<vector<type_number> > elements;  // only if is_record or is_array
+  vector<vector<type_number> > elements;  // only if is_record
+  vector<type_number> element;  // only if is_array
   type_info() :size(0), is_address(false), is_record(false), is_array(false) {}
 };