summaryrefslogtreecommitdiff
path: root/src/string.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/string.hh')
-rw-r--r--src/string.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string.hh b/src/string.hh
index b6b313a1..004be04c 100644
--- a/src/string.hh
+++ b/src/string.hh
@@ -21,7 +21,7 @@ public:
friend constexpr size_t hash_value(const Type& str)
{
- return hash_data(str.data(), (int)str.length());
+ return fnv1a(str.data(), (int)str.length());
}
using iterator = CharType*;