mirror of
https://github.com/boostorg/core.git
synced 2025-11-29 22:00:17 +01:00
Update formatting to be consistent with rest of span
This commit is contained in:
@@ -24,15 +24,13 @@ class span;
|
|||||||
namespace detail {
|
namespace detail {
|
||||||
|
|
||||||
template<class U, class T, class = void>
|
template<class U, class T, class = void>
|
||||||
struct span_convertible
|
struct span_convertible {
|
||||||
{
|
|
||||||
static constexpr bool value = false;
|
static constexpr bool value = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
template<class U, class T>
|
template<class U, class T>
|
||||||
struct span_convertible<U, T, typename std::enable_if<
|
struct span_convertible<U, T, typename
|
||||||
std::is_convertible<U(*)[], T(*)[]>::value>::type>
|
std::enable_if<std::is_convertible<U(*)[], T(*)[]>::value>::type> {
|
||||||
{
|
|
||||||
static constexpr bool value = true;
|
static constexpr bool value = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user