diff options
Diffstat (limited to '')
-rw-r--r-- | src/tools.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tools.h b/src/tools.h index b58ae00..b22e4dd 100644 --- a/src/tools.h +++ b/src/tools.h | |||
@@ -55,8 +55,8 @@ class InterCopyContext | |||
55 | [[nodiscard]] bool push_cached_metatable() const; | 55 | [[nodiscard]] bool push_cached_metatable() const; |
56 | 56 | ||
57 | // for use in inter_copy_userdata | 57 | // for use in inter_copy_userdata |
58 | [[nodiscard]] bool copyclone() const; | 58 | [[nodiscard]] bool copyClonable() const; |
59 | [[nodiscard]] bool copydeep() const; | 59 | [[nodiscard]] bool copyDeep() const; |
60 | 60 | ||
61 | // copying a single Lua stack item | 61 | // copying a single Lua stack item |
62 | [[nodiscard]] bool inter_copy_boolean() const; | 62 | [[nodiscard]] bool inter_copy_boolean() const; |
@@ -79,8 +79,8 @@ class InterCopyContext | |||
79 | 79 | ||
80 | [[nodiscard]] int luaG_nameof(lua_State* L_); | 80 | [[nodiscard]] int luaG_nameof(lua_State* L_); |
81 | 81 | ||
82 | void populate_func_lookup_table(lua_State* L_, int _i, char const* _name); | 82 | void populate_func_lookup_table(lua_State* L_, int i_, char const* name_); |
83 | void initialize_allocator_function(Universe* U, lua_State* L_); | 83 | void initialize_allocator_function(Universe* U_, lua_State* L_); |
84 | 84 | ||
85 | // ################################################################################################# | 85 | // ################################################################################################# |
86 | 86 | ||