aboutsummaryrefslogtreecommitdiff
path: root/src/tools.h
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2024-04-29 12:22:28 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2024-04-29 12:22:28 +0200
commit3e3805297301b15f688297c9c7f65153aec86818 (patch)
treeb2f14af3b46041ec8910f0fcb2205f16cd173f60 /src/tools.h
parent07d6074b5deadc7ff6d30d5fb47fb6fa863a14ff (diff)
downloadlanes-3e3805297301b15f688297c9c7f65153aec86818.tar.gz
lanes-3e3805297301b15f688297c9c7f65153aec86818.tar.bz2
lanes-3e3805297301b15f688297c9c7f65153aec86818.zip
Function parameters L → L_
Diffstat (limited to 'src/tools.h')
-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