1
0
mirror of synced 2025-04-20 11:47:43 +03:00

Fixed build error

This commit is contained in:
yhirose 2020-12-18 00:07:48 +00:00
parent c9a13d214b
commit 0e3925db3f

View File

@ -2142,7 +2142,7 @@ inline constexpr unsigned int str2tag_core(const char *s, size_t l,
(h * 33) ^ static_cast<unsigned char>(*s)); (h * 33) ^ static_cast<unsigned char>(*s));
} }
inline constexpr unsigned int str2tag(const std::string &s) { inline unsigned int str2tag(const std::string &s) {
return str2tag_core(s.data(), s.size(), 0); return str2tag_core(s.data(), s.size(), 0);
} }