From 76a85ad613809094a24b4d073b09a0b1b17334cc Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 4 Jun 2018 18:51:12 -0700 Subject: [PATCH] Renamed GET macro to avoid potential namespace collisions. --- limmutable.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/limmutable.c b/limmutable.c index 4482c98..2617701 100644 --- a/limmutable.c +++ b/limmutable.c @@ -57,7 +57,7 @@ typedef struct { size_t len; } immutable_info_t; -#define GET(i) if (from_table) {\ +#define IMMUTABLE_GETVALUE(i) if (from_table) {\ if (i <= num_fields) {\ lua_rawgeti(L, fields_index, i);\ } else {\ @@ -85,7 +85,7 @@ static inline int _create_instance(lua_State *L, int from_table) unsigned long long ull_hash = 0x9a937c4d; // Seed for (size_t i=1; i <= num_values; i++) { unsigned long long item_hash; - GET(i); + IMMUTABLE_GETVALUE(i); // Stack: [fields, value[i]] int type = lua_type(L, -1); switch (type) { @@ -169,7 +169,7 @@ static inline int _create_instance(lua_State *L, int from_table) } for (size_t i = 1; i <= num_values; i++) { lua_rawgeti(L, -1, i); - GET(i); + IMMUTABLE_GETVALUE(i); // Stack: [fields, __instances, bucket, hash_collider_inst, collider_table, collider_val, inst_val] if (! lua_rawequal(L, -1, -2)) { // If the i'th entry doesn't match the i'th arg lua_pop(L, 3); @@ -216,7 +216,7 @@ static inline int _create_instance(lua_State *L, int from_table) // Stack: [fields, __instances, bucket, inst_userdata, inst_userdata] lua_createtable(L, num_values, 0); for (size_t i=1; i <= num_values; i++) { - GET(i); + IMMUTABLE_GETVALUE(i); lua_rawseti(L, -2, i); } // Stack: [fields, __instances, bucket, inst_userdata, inst_userdata, inst_table]