diff options
author | Benoit Germain <bnt.germain@gmail.com> | 2018-10-25 14:32:48 +0200 |
---|---|---|
committer | Benoit Germain <bnt.germain@gmail.com> | 2018-10-25 14:32:48 +0200 |
commit | 0ba99f2ffa8b8d6a865a7fae8fb8d0a3a5d85e06 (patch) | |
tree | c35ff800b669ff901e673b7b95ed6ac741c76c6a /src/deep.c | |
parent | 9645a86fbcb16ca83c5f4ff0dae0925ac71bb46b (diff) | |
download | lanes-0ba99f2ffa8b8d6a865a7fae8fb8d0a3a5d85e06.tar.gz lanes-0ba99f2ffa8b8d6a865a7fae8fb8d0a3a5d85e06.tar.bz2 lanes-0ba99f2ffa8b8d6a865a7fae8fb8d0a3a5d85e06.zip |
More MinGW buildfixes (I hope)
Diffstat (limited to 'src/deep.c')
-rw-r--r-- | src/deep.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -174,7 +174,7 @@ static void get_deep_lookup( lua_State* L) | |||
174 | * Return the registered ID function for 'index' (deep userdata proxy), | 174 | * Return the registered ID function for 'index' (deep userdata proxy), |
175 | * or NULL if 'index' is not a deep userdata proxy. | 175 | * or NULL if 'index' is not a deep userdata proxy. |
176 | */ | 176 | */ |
177 | static inline luaG_IdFunction get_idfunc( lua_State* L, int index, enum eLookupMode mode_) | 177 | static inline luaG_IdFunction get_idfunc( lua_State* L, int index, LookupMode mode_) |
178 | { | 178 | { |
179 | // when looking inside a keeper, we are 100% sure the object is a deep userdata | 179 | // when looking inside a keeper, we are 100% sure the object is a deep userdata |
180 | if( mode_ == eLM_FromKeeper) | 180 | if( mode_ == eLM_FromKeeper) |
@@ -270,7 +270,7 @@ static int deep_userdata_gc( lua_State* L) | |||
270 | * used in this Lua state (metatable, registring it). Otherwise, increments the | 270 | * used in this Lua state (metatable, registring it). Otherwise, increments the |
271 | * reference count. | 271 | * reference count. |
272 | */ | 272 | */ |
273 | char const* push_deep_proxy( Universe* U, lua_State* L, DeepPrelude* prelude, enum eLookupMode mode_) | 273 | char const* push_deep_proxy( Universe* U, lua_State* L, DeepPrelude* prelude, LookupMode mode_) |
274 | { | 274 | { |
275 | DeepPrelude** proxy; | 275 | DeepPrelude** proxy; |
276 | 276 | ||
@@ -519,7 +519,7 @@ void* luaG_todeep( lua_State* L, luaG_IdFunction idfunc, int index) | |||
519 | * the id function of the copied value, or NULL for non-deep userdata | 519 | * the id function of the copied value, or NULL for non-deep userdata |
520 | * (not copied) | 520 | * (not copied) |
521 | */ | 521 | */ |
522 | luaG_IdFunction copydeep( Universe* U, lua_State* L, lua_State* L2, int index, enum eLookupMode mode_) | 522 | luaG_IdFunction copydeep( Universe* U, lua_State* L, lua_State* L2, int index, LookupMode mode_) |
523 | { | 523 | { |
524 | char const* errmsg; | 524 | char const* errmsg; |
525 | luaG_IdFunction idfunc = get_idfunc( L, index, mode_); | 525 | luaG_IdFunction idfunc = get_idfunc( L, index, mode_); |