2
0
mirror of https://github.com/boostorg/random.git synced 2026-01-19 04:22:17 +00:00

Fix unused variable warning

This commit is contained in:
Matt Borland
2025-02-10 14:03:04 -05:00
parent 4f6fdb9dc7
commit c759809c22

View File

@@ -29,7 +29,7 @@ constexpr auto size(const C& c) -> decltype(c.size())
}
template <typename T, std::size_t N>
constexpr std::size_t size(const T (&array)[N]) noexcept
constexpr std::size_t size(const T (&)[N]) noexcept
{
return N;
}