Renamed GET macro to avoid potential namespace collisions.

This commit is contained in:
Bruce Hill 2018-06-04 18:51:12 -07:00
parent 88ed3df58c
commit 76a85ad613

View File

@ -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]