summaryrefslogtreecommitdiff
path: root/asl/span.hpp
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2025-01-08 23:40:52 +0100
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2025-01-08 23:40:52 +0100
commit838c4b9a45a50f252c7b20d14570b0b7463709ab (patch)
treef50b70c18236a0d3f0b93994d5b0fb8955dd58d6 /asl/span.hpp
parentb94a42b978251c4cdb4eb0be2a2e8d9dc8949eba (diff)
Finish work on hashing probably
Diffstat (limited to 'asl/span.hpp')
-rw-r--r--asl/span.hpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/asl/span.hpp b/asl/span.hpp
index bb36291..8f6fb4a 100644
--- a/asl/span.hpp
+++ b/asl/span.hpp
@@ -171,12 +171,6 @@ public:
ASL_ASSERT(sub_size >= 0 && sub_size <= size());
return span<T>{ data() + size() - sub_size, sub_size };
}
-
- template<typename H>
- friend H AslHashValue(H h, const span& s)
- {
- return H::combine_contiguous(ASL_MOVE(h), span<const T>{s.data(), s.size()});
- }
};
template<is_object T, isize_t kSize>