refactor: remove unused function parameter names

This commit is contained in:
ToruNiina
2019-04-06 19:39:13 +09:00
parent 18986978fb
commit 595fb1aef3

View File

@@ -51,7 +51,7 @@ struct from_toml_tie_impl
template<typename ... Ts>
struct from_toml_tie_impl<0, Ts...>
{
static void invoke(std::tuple<Ts& ...> tie, const toml::value& v)
static void invoke(std::tuple<Ts& ...>, const toml::value&)
{
return;
}