summaryrefslogtreecommitdiffstats
path: root/src/hash_map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash_map.h')
-rw-r--r--src/hash_map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash_map.h b/src/hash_map.h
index 88c2681..15e86da 100644
--- a/src/hash_map.h
+++ b/src/hash_map.h
@@ -86,7 +86,7 @@ struct hash<std::string> {
template<>
struct hash<StringPiece> {
size_t operator()(StringPiece key) const {
- return MurmurHash2(key.str_, key.len_);
+ return MurmurHash2(key.str(), key.len());
}
};