aboutsummaryrefslogtreecommitdiff
path: root/src/zenserver/config.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2025-03-06 17:27:59 +0100
committerStefan Boberg <[email protected]>2025-03-06 17:27:59 +0100
commit66e5d1f4e288e0c32f854ebe3b63584b42b83554 (patch)
treed67e9d358419b5baccd429d54988414e0d7cd7a6 /src/zenserver/config.cpp
parentreduced memory churn using fixed_xxx containers (#236) (diff)
downloadzen-66e5d1f4e288e0c32f854ebe3b63584b42b83554.tar.xz
zen-66e5d1f4e288e0c32f854ebe3b63584b42b83554.zip
switched std::vector -> eastl::vector
Diffstat (limited to 'src/zenserver/config.cpp')
-rw-r--r--src/zenserver/config.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zenserver/config.cpp b/src/zenserver/config.cpp
index 809092378..00fa99110 100644
--- a/src/zenserver/config.cpp
+++ b/src/zenserver/config.cpp
@@ -57,10 +57,10 @@ EmitCentralManifest(const std::filesystem::path& SystemRoot, Oid Identifier, CbO
WriteFile(StatesPath / fmt::format("{}", Identifier), Cbo.Save().GetBuffer().AsIoBuffer());
}
-std::vector<CbObject>
+eastl::vector<CbObject>
ReadAllCentralManifests(const std::filesystem::path& SystemRoot)
{
- std::vector<CbObject> Manifests;
+ eastl::vector<CbObject> Manifests;
DirectoryContent Content;
GetDirectoryContent(SystemRoot / "States", DirectoryContentFlags::IncludeFiles, Content);