aboutsummaryrefslogtreecommitdiff
path: root/include/gsl/span
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2019-08-19 18:19:27 -0700
committerHaibo Huang <hhb@google.com>2019-08-19 18:19:27 -0700
commit97163d0b88931989c01370c75ed7d9cfe4a6c3ce (patch)
tree52c2d1732f4a79220fb68c98f5cea424f1564522 /include/gsl/span
parent1db4f387edd30fde98be8da2a315dd82f1c647d9 (diff)
parentb576cc6ce375cf42f6537d65a9ef29d67aa6b78e (diff)
downloadMicrosoft-GSL-97163d0b88931989c01370c75ed7d9cfe4a6c3ce.tar.gz
Upgrade Microsoft-GSL to b576cc6ce375cf42f6537d65a9ef29d67aa6b78e
Test: None Change-Id: I0edbad888bfb8c4a6672d0cb2f070f6a2eb923ef
Diffstat (limited to 'include/gsl/span')
-rw-r--r--include/gsl/span2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gsl/span b/include/gsl/span
index b4da532..59bd121 100644
--- a/include/gsl/span
+++ b/include/gsl/span
@@ -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)
{}