Remove space between operator"" and _t

This should fix a -Wdeprecated-literal-operator instance since this is
deprecated as a result of CWG2521 (iiuc C++23).
This commit is contained in:
Peter Boström 2024-10-14 13:33:29 +11:00
parent e0ebc431dc
commit c3d4e0dcac

View File

@ -3760,7 +3760,7 @@ inline unsigned int str2tag(const std::string &s) {
namespace udl {
inline constexpr unsigned int operator"" _t(const char *s, size_t l) {
inline constexpr unsigned int operator""_t(const char *s, size_t l) {
return str2tag_core(s, l, 0);
}