summaryrefslogtreecommitdiff
path: root/asl/string_view.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'asl/string_view.hpp')
-rw-r--r--asl/string_view.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/asl/string_view.hpp b/asl/string_view.hpp
index 533a4a8..673e3bc 100644
--- a/asl/string_view.hpp
+++ b/asl/string_view.hpp
@@ -89,7 +89,7 @@ public:
template<typename H>
friend H AslHashValue(H h, string_view sv)
{
- return H::combine(H::combine_bytes(h, as_bytes(sv.as_span())), sv.size());
+ return H::combine(H::combine_contiguous(h, as_bytes(sv.as_span())), sv.size());
}
};