From 72d5d0185c63860ddebf66432d35a217e35587a1 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Mon, 26 Oct 2015 20:06:51 -0700 Subject: 2284 --- 010vm.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '010vm.cc') diff --git a/010vm.cc b/010vm.cc index 3b4dae26..23f9d9d6 100644 --- a/010vm.cc +++ b/010vm.cc @@ -165,9 +165,9 @@ atexit(teardown_types); // with different properties for each, that may require an exclusive container // whose variants are individual-account and joint-account containers. enum kind_of_type { - primitive, - container, - exclusive_container + PRIMITIVE, + CONTAINER, + EXCLUSIVE_CONTAINER }; struct type_info { @@ -177,7 +177,7 @@ struct type_info { vector elements; vector element_names; // End type_info Fields - type_info() :kind(primitive), size(0) {} + type_info() :kind(PRIMITIVE), size(0) {} }; enum primitive_recipes { -- cgit 1.4.1-2-gfad0