Skip to content

Commit

Permalink
Fix an unused parameter warning
Browse files Browse the repository at this point in the history
  • Loading branch information
apolukhin committed Sep 28, 2023
1 parent 6b415ea commit 2c79036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/pfr/detail/stdarray.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ constexpr auto make_stdarray_from_tietuple(const T& t, std::index_sequence<I...>
}

template <class T>
constexpr auto make_stdarray_from_tietuple(const T& t, std::index_sequence<>, long) noexcept {
constexpr auto make_stdarray_from_tietuple(const T&, std::index_sequence<>, long) noexcept {
return std::array<std::nullptr_t, 0>{};
}

Expand Down

0 comments on commit 2c79036

Please sign in to comment.