From 2af9b11fe90bbfc6c27d48b55c5938124b81534f Mon Sep 17 00:00:00 2001 From: beinhaerter <34543625+beinhaerter@users.noreply.github.com> Date: Tue, 20 Oct 2020 00:44:11 +0200 Subject: [PATCH] Update include/gsl/span Co-authored-by: Jordan Maples [MSFT] <49793787+JordanMaples@users.noreply.github.com> --- include/gsl/span | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/gsl/span b/include/gsl/span index c2e0135..2133baa 100644 --- a/include/gsl/span +++ b/include/gsl/span @@ -441,7 +441,7 @@ public: template = 0> constexpr span(pointer firstElem, pointer lastElem) noexcept - : storage_(firstElem, gsl::narrow_cast(lastElem - firstElem)) + : storage_(firstElem, narrow_cast(lastElem - firstElem)) {} template