fix: solve deprecated literal operator error

This commit is contained in:
Bruno Alexandre Rosa 2026-03-26 17:52:00 -03:00
parent dd053c76df
commit 13ce7b12b8

View file

@ -489,7 +489,7 @@ inline constexpr unsigned int str2tag(std::string_view sv) {
namespace udl { namespace udl {
inline constexpr unsigned int operator"" _(const char *s, size_t l) { inline constexpr unsigned int operator""_(const char *s, size_t l) {
return str2tag_core(s, l, 0); return str2tag_core(s, l, 0);
} }