about summary refs log tree commit diff stats
path: root/033exclusive_container.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-10-26 20:06:51 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-10-26 20:06:51 -0700
commit72d5d0185c63860ddebf66432d35a217e35587a1 (patch)
tree7483384ac3fc2d52e8e269a2ca18f39c9a946ea4 /033exclusive_container.cc
parentae256ea13efc77cc767a658c6f61b12cd7461e21 (diff)
downloadmu-72d5d0185c63860ddebf66432d35a217e35587a1.tar.gz
2284
Diffstat (limited to '033exclusive_container.cc')
-rw-r--r--033exclusive_container.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/033exclusive_container.cc b/033exclusive_container.cc
index 5376e058..1d1e28a0 100644
--- a/033exclusive_container.cc
+++ b/033exclusive_container.cc
@@ -9,7 +9,7 @@
 {
 type_ordinal tmp = Type_ordinal["number-or-point"] = Next_type_ordinal++;
 Type[tmp].size = 2;
-Type[tmp].kind = exclusive_container;
+Type[tmp].kind = EXCLUSIVE_CONTAINER;
 Type[tmp].name = "number-or-point";
 Type[tmp].elements.push_back(new type_tree(number));
 Type[tmp].element_names.push_back("i");
@@ -33,7 +33,7 @@ recipe main [
 +mem: storing 35 in location 6
 
 :(before "End size_of(type) Cases")
-if (t.kind == exclusive_container) {
+if (t.kind == EXCLUSIVE_CONTAINER) {
   // size of an exclusive container is the size of its largest variant
   // (So like containers, it can't contain arrays.)
   long long int result = 0;
@@ -85,7 +85,7 @@ case MAYBE_CONVERT: {
   }
   reagent base = inst.ingredients.at(0);
   canonize_type(base);
-  if (!base.type || !base.type->value || Type[base.type->value].kind != exclusive_container) {
+  if (!base.type || !base.type->value || Type[base.type->value].kind != EXCLUSIVE_CONTAINER) {
     raise_error << maybe(Recipe[r].name) << "first ingredient of 'maybe-convert' should be an exclusive-container, but got " << base.original_string << '\n' << end();
     break;
   }
@@ -132,7 +132,7 @@ exclusive-container foo [
 
 :(before "End Command Handlers")
 else if (command == "exclusive-container") {
-  insert_container(command, exclusive_container, in);
+  insert_container(command, EXCLUSIVE_CONTAINER, in);
 }
 
 //:: To construct exclusive containers out of variant types, use 'merge'.
@@ -160,7 +160,7 @@ if (current_instruction().operation == MERGE
     && current_instruction().products.at(0).type) {
   reagent x = current_instruction().products.at(0);
   canonize(x);
-  if (Type[x.type->value].kind == exclusive_container) {
+  if (Type[x.type->value].kind == EXCLUSIVE_CONTAINER) {
     return size_of(x) < SIZE(data);
   }
 }