about summary refs log tree commit diff stats
path: root/030container.cc
diff options
context:
space:
mode:
Diffstat (limited to '030container.cc')
-rw-r--r--030container.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/030container.cc b/030container.cc
index 8c570498..e2cd857e 100644
--- a/030container.cc
+++ b/030container.cc
@@ -92,14 +92,12 @@ def main [
 ]
 +mem: storing 0 in location 7
 
-//: Global data structure for container metadata.
 //: Can't put this in type_info because later layers will add support for more
 //: complex type trees where metadata depends on *combinations* of types.
-
 :(before "struct reagent")
 struct container_metadata {
   int size;
-  vector<int> offset;
+  vector<int> offset;  // not used by exclusive containers
   // End container_metadata Fields
   container_metadata() :size(0) {
     // End container_metadata Constructor