From 3e3805297301b15f688297c9c7f65153aec86818 Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Mon, 29 Apr 2024 12:22:28 +0200 Subject: Function parameters L → L_ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/tools.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/tools.h') 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; // ################################################################################################# -void push_registry_subtable_mode(lua_State* L, RegistryUniqueKey key_, const char* mode_); -void push_registry_subtable(lua_State* L, RegistryUniqueKey key_); +void push_registry_subtable_mode(lua_State* L_, RegistryUniqueKey key_, const char* mode_); +void push_registry_subtable(lua_State* L_, RegistryUniqueKey key_); enum class VT { @@ -77,10 +77,10 @@ class InterCopyContext // ################################################################################################# -[[nodiscard]] int luaG_nameof(lua_State* L); +[[nodiscard]] int luaG_nameof(lua_State* L_); -void populate_func_lookup_table(lua_State* L, int _i, char const* _name); -void initialize_allocator_function(Universe* U, lua_State* L); +void populate_func_lookup_table(lua_State* L_, int _i, char const* _name); +void initialize_allocator_function(Universe* U, lua_State* L_); // ################################################################################################# -- cgit v1.2.3-55-g6feb