about summary refs log tree commit diff stats
path: root/032exclusive_container.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-05-03 09:14:19 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-05-03 09:14:19 -0700
commitf890f14792a238aee8cdf965bc4afbaad5f98cca (patch)
tree64fa02d038f9440ba6a04649dec8939ec70ef828 /032exclusive_container.cc
parent3377364a849d938a9999357caf26853a844b238c (diff)
downloadmu-f890f14792a238aee8cdf965bc4afbaad5f98cca.tar.gz
2892
Diffstat (limited to '032exclusive_container.cc')
-rw-r--r--032exclusive_container.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/032exclusive_container.cc b/032exclusive_container.cc
index e9f918f4..e071cf52 100644
--- a/032exclusive_container.cc
+++ b/032exclusive_container.cc
@@ -31,7 +31,10 @@ def main [
 +mem: storing 35 in location 6
 
 :(before "End size_of(type) Cases")
-if (t.kind == EXCLUSIVE_CONTAINER) return get(Container_metadata, type).size;
+if (t.kind == EXCLUSIVE_CONTAINER) {
+  // Compute size_of Exclusive Container
+  return get(Container_metadata, type).size;
+}
 :(before "End compute_container_metadata Cases")
 if (info.kind == EXCLUSIVE_CONTAINER) {
   container_metadata metadata;