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

Fixed build error

This commit is contained in:
yhirose 2024-09-05 12:27:50 -04:00
parent c75d071615
commit 9ff3ff9446

View File

@ -356,7 +356,7 @@ struct case_ignore_equal {
}; };
struct case_ignore_hash { struct case_ignore_hash {
constexpr size_t operator()(std::string_view key) const { constexpr size_t operator()(const std::string &key) const {
return hash_core(key.data(), key.size(), 0); return hash_core(key.data(), key.size(), 0);
} }