diff --git a/include/gsl/span b/include/gsl/span index 6015d85..c2e0135 100644 --- a/include/gsl/span +++ b/include/gsl/span @@ -434,7 +434,7 @@ public: template = 0> constexpr explicit span(pointer firstElem, pointer lastElem) noexcept - : storage_(firstElem, gsl::narrow_cast(lastElem - firstElem)) + : storage_(firstElem, narrow_cast(lastElem - firstElem)) { Expects(lastElem - firstElem == static_cast(Extent)); }