Removed redundant static_cast<> and is_same<> test.

This commit is contained in:
Neil MacIntosh 2016-09-14 22:01:02 -07:00
parent 8361aae39e
commit 831be5de39

View File

@ -132,8 +132,7 @@ namespace details
template <class From, class To> template <class From, class To>
struct is_allowed_element_type_conversion struct is_allowed_element_type_conversion
: public std::integral_constant<bool, std::is_same<From, std::remove_cv_t<To>>::value || : public std::integral_constant<bool, std::is_convertible<From (*)[], To (*)[]>::value>
std::is_convertible<From(*)[], To(*)[]>::value>
{ {
}; };
@ -420,8 +419,7 @@ public:
details::is_allowed_extent_conversion<OtherExtent, Extent>::value && details::is_allowed_extent_conversion<OtherExtent, Extent>::value &&
details::is_allowed_element_type_conversion<OtherElementType, element_type>::value>> details::is_allowed_element_type_conversion<OtherElementType, element_type>::value>>
constexpr span(const span<OtherElementType, OtherExtent>& other) constexpr span(const span<OtherElementType, OtherExtent>& other)
: storage_(static_cast<pointer>(other.data()), : storage_(other.data(), details::extent_type<OtherExtent>(other.size()))
details::extent_type<OtherExtent>(other.size()))
{ {
} }
@ -431,8 +429,7 @@ public:
details::is_allowed_extent_conversion<OtherExtent, Extent>::value && details::is_allowed_extent_conversion<OtherExtent, Extent>::value &&
details::is_allowed_element_type_conversion<OtherElementType, element_type>::value>> details::is_allowed_element_type_conversion<OtherElementType, element_type>::value>>
constexpr span(span<OtherElementType, OtherExtent>&& other) constexpr span(span<OtherElementType, OtherExtent>&& other)
: storage_(static_cast<pointer>(other.data()), : storage_(other.data(), details::extent_type<OtherExtent>(other.size()))
details::extent_type<OtherExtent>(other.size()))
{ {
} }