@@ -2849,32 +2849,32 @@ namespace std
28492849namespace ST { namespace literals
28502850{
28512851 ST_NODISCARD
2852- inline ST::string operator " " _st(const char *str, size_t size)
2852+ inline ST::string operator " " _st(const char *str, size_t size)
28532853 {
28542854 return ST::string::from_validated (str, size);
28552855 }
28562856
28572857 ST_NODISCARD
2858- inline ST::string operator " " _st(const wchar_t *str, size_t size)
2858+ inline ST::string operator " " _st(const wchar_t *str, size_t size)
28592859 {
28602860 return ST::string::from_wchar (str, size, ST::assume_valid);
28612861 }
28622862
28632863 ST_NODISCARD
2864- inline ST::string operator " " _st(const char16_t *str, size_t size)
2864+ inline ST::string operator " " _st(const char16_t *str, size_t size)
28652865 {
28662866 return ST::string::from_utf16 (str, size, ST::assume_valid);
28672867 }
28682868
28692869 ST_NODISCARD
2870- inline ST::string operator " " _st(const char32_t *str, size_t size)
2870+ inline ST::string operator " " _st(const char32_t *str, size_t size)
28712871 {
28722872 return ST::string::from_utf32 (str, size, ST::assume_valid);
28732873 }
28742874
28752875#ifdef ST_HAVE_CXX20_CHAR8_TYPES
28762876 ST_NODISCARD
2877- inline ST::string operator " " _st(const char8_t *str, size_t size)
2877+ inline ST::string operator " " _st(const char8_t *str, size_t size)
28782878 {
28792879 return ST::string::from_validated (str, size);
28802880 }
0 commit comments