fix space before operator warning

This commit is contained in:
PoliEcho 2025-05-24 10:18:59 +02:00
parent e51088eb26
commit 0486d9fb22

View File

@ -12,7 +12,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});
}