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/zen/zen.cpp | |
| parent | switched std::vector -> eastl::vector (diff) | |
| download | archived-zen-sb/eastl.tar.xz archived-zen-sb/eastl.zip | |
std::span -> eastl::spansb/eastl
Diffstat (limited to 'src/zen/zen.cpp')
| -rw-r--r-- | src/zen/zen.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/zen/zen.cpp b/src/zen/zen.cpp index 4c6aa0087..598e84aad 100644 --- a/src/zen/zen.cpp +++ b/src/zen/zen.cpp @@ -124,11 +124,11 @@ ZenCmdBase::ParseOptions(cxxopts::Options& CmdOptions, int argc, char** argv) // Build an array for sub command to parse int ZenCmdBase::GetSubCommand(cxxopts::Options&, - int argc, - char** argv, - std::span<cxxopts::Options*> SubOptions, - cxxopts::Options*& OutSubOption, - eastl::vector<char*>& OutSubCommandArguments) + int argc, + char** argv, + eastl::span<cxxopts::Options*> SubOptions, + cxxopts::Options*& OutSubOption, + eastl::vector<char*>& OutSubCommandArguments) { for (int i = 1; i < argc; ++i) { |