aboutsummaryrefslogtreecommitdiff
path: root/src/zen/cmds/workspaces_cmd.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2025-03-06 17:35:39 +0100
committerStefan Boberg <[email protected]>2025-03-06 17:35:39 +0100
commitb044289e3c8fbc4eb4ffa5c1d96da51aa0a41f9b (patch)
treea511dd945c87415fb5389e6579299095e3f3afc8 /src/zen/cmds/workspaces_cmd.cpp
parentswitched std::vector -> eastl::vector (diff)
downloadarchived-zen-sb/eastl.tar.xz
archived-zen-sb/eastl.zip
std::span -> eastl::spansb/eastl
Diffstat (limited to 'src/zen/cmds/workspaces_cmd.cpp')
-rw-r--r--src/zen/cmds/workspaces_cmd.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/zen/cmds/workspaces_cmd.cpp b/src/zen/cmds/workspaces_cmd.cpp
index f6f86e078..2876d2fda 100644
--- a/src/zen/cmds/workspaces_cmd.cpp
+++ b/src/zen/cmds/workspaces_cmd.cpp
@@ -703,10 +703,10 @@ WorkspaceShareCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char**
}
}
- auto ChunksToOidStrings = [](HttpClient& Http,
- std::string_view WorkspaceId,
- std::string_view ShareId,
- std::span<const std::string> ChunkIds) -> std::vector<std::string> {
+ auto ChunksToOidStrings = [](HttpClient& Http,
+ std::string_view WorkspaceId,
+ std::string_view ShareId,
+ eastl::span<const std::string> ChunkIds) -> std::vector<std::string> {
std::vector<std::string> Oids;
Oids.reserve(ChunkIds.size());
eastl::vector<size_t> NeedsConvertIndexes;