mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-05-15 01:08:27 +00:00
Fixed build error
This commit is contained in:
parent
c75d071615
commit
9ff3ff9446
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue