aboutsummaryrefslogtreecommitdiff
path: root/src/tools.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/tools.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tools.h b/src/tools.h
index f83a01c..b58ae00 100644
--- a/src/tools.h
+++ b/src/tools.h
@@ -8,8 +8,8 @@ class Universe;
8 8
9// ################################################################################################# 9// #################################################################################################
10 10
11void push_registry_subtable_mode(lua_State* L, RegistryUniqueKey key_, const char* mode_); 11void push_registry_subtable_mode(lua_State* L_, RegistryUniqueKey key_, const char* mode_);
12void push_registry_subtable(lua_State* L, RegistryUniqueKey key_); 12void push_registry_subtable(lua_State* L_, RegistryUniqueKey key_);
13 13
14enum class VT 14enum class VT
15{ 15{
@@ -77,10 +77,10 @@ class InterCopyContext
77 77
78// ################################################################################################# 78// #################################################################################################
79 79
80[[nodiscard]] int luaG_nameof(lua_State* L); 80[[nodiscard]] int luaG_nameof(lua_State* L_);
81 81
82void populate_func_lookup_table(lua_State* L, int _i, char const* _name); 82void populate_func_lookup_table(lua_State* L_, int _i, char const* _name);
83void initialize_allocator_function(Universe* U, lua_State* L); 83void initialize_allocator_function(Universe* U, lua_State* L_);
84 84
85// ################################################################################################# 85// #################################################################################################
86 86