This commit is contained in:
Werner Henze 2018-02-25 18:33:05 +01:00
parent 7eb8f41af5
commit c5da5e7409
2 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ public:
using reference = std::add_lvalue_reference_t<value_type>;
using const_reference = std::add_lvalue_reference_t<std::add_const_t<value_type>>;
constexpr multi_span_index() GSL_NOEXCEPT {}
constexpr multi_span_index() GSL_NOEXCEPT = default;
constexpr multi_span_index(const value_type (&values)[Rank]) GSL_NOEXCEPT
{

View File

@ -276,7 +276,7 @@ namespace details
static_assert(Ext >= 0, "A fixed-size span must be >= 0 in size.");
constexpr extent_type() GSL_NOEXCEPT {}
constexpr extent_type() GSL_NOEXCEPT = default;
template <index_type Other>
constexpr extent_type(extent_type<Other> ext)