mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Place param names in comments when unused
This commit is contained in:
parent
a72abdcaba
commit
fc0af4cc0e
|
@ -100,15 +100,16 @@ int sol_lua_push(sol::types<QByteArray>, lua_State *L, const QByteArray &value)
|
|||
|
||||
// ThisPluginState
|
||||
|
||||
bool sol_lua_check(sol::types<chatterino::lua::ThisPluginState>, lua_State *L,
|
||||
int index, std::function<sol::check_handler_type> handler,
|
||||
sol::stack::record &tracking)
|
||||
bool sol_lua_check(sol::types<chatterino::lua::ThisPluginState>,
|
||||
lua_State * /*L*/, int /* index*/,
|
||||
std::function<sol::check_handler_type> /* handler*/,
|
||||
sol::stack::record & /*tracking*/)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
chatterino::lua::ThisPluginState sol_lua_get(
|
||||
sol::types<chatterino::lua::ThisPluginState>, lua_State *L, int index,
|
||||
sol::types<chatterino::lua::ThisPluginState>, lua_State *L, int /*index*/,
|
||||
sol::stack::record &tracking)
|
||||
{
|
||||
tracking.use(0);
|
||||
|
|
Loading…
Reference in a new issue