diff --git a/include/gsl/span_ext b/include/gsl/span_ext index 516cc99..2a7664c 100644 --- a/include/gsl/span_ext +++ b/include/gsl/span_ext @@ -123,12 +123,14 @@ constexpr span make_span(const Container& } template +[[deprecated("This function is deprecated. See GSL issue #1092.")]] constexpr span make_span(Ptr& cont, std::size_t count) { return span(cont, count); } template +[[deprecated("This function is deprecated. See GSL issue #1092.")]] constexpr span make_span(Ptr& cont) { return span(cont);