diff --git a/include/gsl/string_span b/include/gsl/string_span index 78a9cb0..2c11228 100644 --- a/include/gsl/string_span +++ b/include/gsl/string_span @@ -57,48 +57,31 @@ namespace gsl // template -using basic_zstring [[deprecated("string_span was removed from the C++ Core Guidelines. For more " - "information, see isocpp/CppCoreGuidelines PR#1680")]] = CharT*; +using basic_zstring = CharT*; template -using czstring [[deprecated("string_span was removed from the C++ Core Guidelines. For more " - "information, see isocpp/CppCoreGuidelines PR#1680")]] = - basic_zstring; +using czstring = basic_zstring; template -using cwzstring [[deprecated("string_span was removed from the C++ Core Guidelines. For more " - "information, see isocpp/CppCoreGuidelines PR#1680")]] = - basic_zstring; +using cwzstring = basic_zstring; template -using cu16zstring [[deprecated("string_span was removed from the C++ Core Guidelines. For more " - "information, see isocpp/CppCoreGuidelines PR#1680")]] = - basic_zstring; +using cu16zstring = basic_zstring; template -using cu32zstring [[deprecated("string_span was removed from the C++ Core Guidelines. For more " - "information, see isocpp/CppCoreGuidelines PR#1680")]] = - basic_zstring; +using cu32zstring = basic_zstring; template -using zstring [[deprecated("string_span was removed from the C++ Core Guidelines. For more " - "information, see isocpp/CppCoreGuidelines PR#1680")]] = - basic_zstring; +using zstring = basic_zstring; template -using wzstring [[deprecated("string_span was removed from the C++ Core Guidelines. For more " - "information, see isocpp/CppCoreGuidelines PR#1680")]] = - basic_zstring; +using wzstring = basic_zstring; template -using u16zstring [[deprecated("string_span was removed from the C++ Core Guidelines. For more " - "information, see isocpp/CppCoreGuidelines PR#1680")]] = - basic_zstring; +using u16zstring = basic_zstring; template -using u32zstring [[deprecated("string_span was removed from the C++ Core Guidelines. For more " - "information, see isocpp/CppCoreGuidelines PR#1680")]] = - basic_zstring; +using u32zstring = basic_zstring; namespace details {