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.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/010vm.cc b/010vm.cc
index 93145185..5b50b604 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -169,10 +169,9 @@ enum kind_of_type {
 struct type_info {
   string name;
   kind_of_type kind;
-  int size;  // only if type is not primitive; primitives and addresses have size 1 (except arrays are dynamic)
   vector<reagent> elements;
   // End type_info Fields
-  type_info() :kind(PRIMITIVE), size(0) {}
+  type_info() :kind(PRIMITIVE) {}
 };
 
 enum primitive_recipes {