How to mark a constexpr function's parameter unused?

Consider this classic example: template <typename T, std::size_t N> constexpr std::size_t arraySize(T (&array)[N]) noexcept { return N; } Now this works fine, but there is one annoyance,...