mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-12-16 03:08:52 +08:00
refactor: remove name of unused arg in func
This commit is contained in:
@@ -391,7 +391,7 @@ template<typename T, std::size_t I>
|
|||||||
struct try_get_tuple_impl<T, I, I>
|
struct try_get_tuple_impl<T, I, I>
|
||||||
{
|
{
|
||||||
template<typename Array>
|
template<typename Array>
|
||||||
static result<T, error_info> invoke(const Array& a, T x) noexcept
|
static result<T, error_info> invoke(const Array&, T x) noexcept
|
||||||
{
|
{
|
||||||
return ok(std::move(x));
|
return ok(std::move(x));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user