about summary refs log tree commit diff stats
path: root/030container.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-04-30 09:48:57 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-04-30 09:48:57 -0700
commitd36ae5651435a477e34d9e1338ee3ca79d949b1c (patch)
tree40123d990691216ed4ea8cc86eefcc99637ebb5b /030container.cc
parent80ca5945f89d5a8f1932a006b2565d11adad4446 (diff)
downloadmu-d36ae5651435a477e34d9e1338ee3ca79d949b1c.tar.gz
2887
Diffstat (limited to '030container.cc')
-rw-r--r--030container.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/030container.cc b/030container.cc
index 38682e96..35b2d89b 100644
--- a/030container.cc
+++ b/030container.cc
@@ -93,10 +93,7 @@ def main [
 +mem: storing 0 in location 7
 
 :(before "End size_of(type) Cases")
-if (type->value == -1) {
-  // error value, but we'll raise it elsewhere
-  return 1;
-}
+if (type->value == -1) return 1;  // error value, but we'll raise it elsewhere
 if (type->value == 0) {
   assert(!type->left && !type->right);
   return 1;