diff options
Diffstat (limited to 'src/tools.h')
-rw-r--r-- | src/tools.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tools.h b/src/tools.h index 5e6ce78..c1a8534 100644 --- a/src/tools.h +++ b/src/tools.h | |||
@@ -19,13 +19,13 @@ void luaG_dump( lua_State* L); | |||
19 | void push_registry_subtable_mode( lua_State* L, UniqueKey key_, const char* mode_); | 19 | void push_registry_subtable_mode( lua_State* L, UniqueKey key_, const char* mode_); |
20 | void push_registry_subtable( lua_State* L, UniqueKey key_); | 20 | void push_registry_subtable( lua_State* L, UniqueKey key_); |
21 | 21 | ||
22 | enum e_vt | 22 | enum class VT |
23 | { | 23 | { |
24 | VT_NORMAL, | 24 | NORMAL, |
25 | VT_KEY, | 25 | KEY, |
26 | VT_METATABLE | 26 | METATABLE |
27 | }; | 27 | }; |
28 | bool inter_copy_one(Universe* U, lua_State* L2, int L2_cache_i, lua_State* L, int i, enum e_vt vt, LookupMode mode_, char const* upName_); | 28 | bool inter_copy_one(Universe* U, lua_State* L2, int L2_cache_i, lua_State* L, int i, VT vt_, LookupMode mode_, char const* upName_); |
29 | 29 | ||
30 | // ################################################################################################ | 30 | // ################################################################################################ |
31 | 31 | ||