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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user