aboutsummaryrefslogtreecommitdiff
path: root/src/zenutil/cache/cachepolicy.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/zenutil/cache/cachepolicy.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/zenutil/cache/cachepolicy.cpp')
-rw-r--r--src/zenutil/cache/cachepolicy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenutil/cache/cachepolicy.cpp b/src/zenutil/cache/cachepolicy.cpp
index 0bdfd87ce..8bfb11a30 100644
--- a/src/zenutil/cache/cachepolicy.cpp
+++ b/src/zenutil/cache/cachepolicy.cpp
@@ -166,7 +166,7 @@ public:
inline std::span<const CacheValuePolicy> GetValuePolicies() const final { return Values; }
private:
- std::vector<CacheValuePolicy> Values;
+ eastl::vector<CacheValuePolicy> Values;
};
CachePolicy