Update formatting to be consistent with rest of span

This commit is contained in:
Glen Fernandes
2025-10-25 14:55:53 -04:00
parent ed46bfacff
commit b852430614

View File

@@ -24,15 +24,13 @@ class span;
namespace detail {
template<class U, class T, class = void>
struct span_convertible
{
struct span_convertible {
static constexpr bool value = false;
};
template<class U, class T>
struct span_convertible<U, T, typename std::enable_if<
std::is_convertible<U(*)[], T(*)[]>::value>::type>
{
struct span_convertible<U, T, typename
std::enable_if<std::is_convertible<U(*)[], T(*)[]>::value>::type> {
static constexpr bool value = true;
};