Fix #323 - Badly positioned noexcept

This commit is contained in:
Neil MacIntosh 2016-08-15 11:25:43 -07:00 committed by GitHub
commit 93b3258e36
2 changed files with 2 additions and 2 deletions

View File

@ -179,7 +179,7 @@ namespace details
using pointer = std::add_pointer_t<value_type>; using pointer = std::add_pointer_t<value_type>;
using reference = std::add_lvalue_reference_t<value_type>; using reference = std::add_lvalue_reference_t<value_type>;
constexpr span_iterator() : span_iterator(nullptr, 0) noexcept {} constexpr span_iterator() noexcept : span_iterator(nullptr, 0) {}
constexpr span_iterator(const Span* span, typename Span::index_type index) constexpr span_iterator(const Span* span, typename Span::index_type index)
: span_(span), index_(index) : span_(span), index_(index)