Merge pull request #769 from jack17529/patch-1

Update usage of difference_type in span
This commit is contained in:
Jordan Maples [MSFT] 2019-08-15 14:49:12 -07:00 committed by GitHub
commit b576cc6ce3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -141,7 +141,7 @@ namespace details
span_iterator() = default;
constexpr span_iterator(const Span* span, typename Span::index_type idx) noexcept
constexpr span_iterator(const Span* span, difference_type idx) noexcept
: span_(span), index_(idx)
{}