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