diff options
Diffstat (limited to 'src/string-view.h')
-rw-r--r-- | src/string-view.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string-view.h b/src/string-view.h index bc90130f..e6823b37 100644 --- a/src/string-view.h +++ b/src/string-view.h @@ -279,7 +279,7 @@ namespace std { template <> struct hash<::wabt::string_view> { ::wabt::hash_code operator()(const ::wabt::string_view& sv) { - return ::wabt::hash_range(sv.begin(), sv.end()); + return ::wabt::HashRange(sv.begin(), sv.end()); } }; |