diff options
| author | Stefan Boberg <[email protected]> | 2025-03-06 17:35:39 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2025-03-06 17:35:39 +0100 |
| commit | b044289e3c8fbc4eb4ffa5c1d96da51aa0a41f9b (patch) | |
| tree | a511dd945c87415fb5389e6579299095e3f3afc8 /src/zenstore/hashkeyset.cpp | |
| parent | switched std::vector -> eastl::vector (diff) | |
| download | zen-sb/eastl.tar.xz zen-sb/eastl.zip | |
std::span -> eastl::spansb/eastl
Diffstat (limited to 'src/zenstore/hashkeyset.cpp')
| -rw-r--r-- | src/zenstore/hashkeyset.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenstore/hashkeyset.cpp b/src/zenstore/hashkeyset.cpp index a5436f5cb..1fa32d25d 100644 --- a/src/zenstore/hashkeyset.cpp +++ b/src/zenstore/hashkeyset.cpp @@ -13,7 +13,7 @@ HashKeySet::AddHashToSet(const IoHash& HashToAdd) } void -HashKeySet::AddHashesToSet(std::span<const IoHash> HashesToAdd) +HashKeySet::AddHashesToSet(eastl::span<const IoHash> HashesToAdd) { m_HashSet.insert(HashesToAdd.begin(), HashesToAdd.end()); } |