diff --git a/include/gsl/span b/include/gsl/span index 1013a24..73a4d96 100644 --- a/include/gsl/span +++ b/include/gsl/span @@ -447,7 +447,7 @@ public: template ::value, int> = 0> constexpr span(element_type (&arr)[N]) noexcept - : storage_(KnownNotNull{arr + 0}, details::extent_type()) + : storage_(KnownNotNull{arr}, details::extent_type()) {} template <