about summary refs log tree commit diff stats
path: root/010vm.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-03-28 10:11:23 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-03-28 10:11:23 -0700
commita5401241a1976e6a3b102f1b70e5af66c7f205fb (patch)
treebe0137c76677b76d856356c6e0c3cc35a8a3b19e /010vm.cc
parent9f73b16511406dd8281b615b138d8648e854ca52 (diff)
downloadmu-a5401241a1976e6a3b102f1b70e5af66c7f205fb.tar.gz
2818
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 {