Skip to content

Commit

Permalink
refactor: remove name of unused arg in func
Browse files Browse the repository at this point in the history
  • Loading branch information
ToruNiina committed Jun 27, 2024
1 parent 83f37a1 commit dc562ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/toml11/try_get.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ template<typename T, std::size_t I>
struct try_get_tuple_impl<T, I, I>
{
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));
}
Expand Down

0 comments on commit dc562ae

Please sign in to comment.