fix space between quotes and suffix is deprecated in C++23 warning

This commit is contained in:
PoliEcho 2025-05-17 16:52:07 +02:00
parent e92069c8db
commit 87768dedf4

View File

@ -13,7 +13,7 @@ inline constexpr auto hash_djb2a(const std::string_view sv) {
return hash;
}
inline constexpr auto operator"" _sh(const char* str, size_t len) {
inline constexpr auto operator""_sh(const char* str, size_t len) {
return hash_djb2a(std::string_view{str, len});
}