aboutsummaryrefslogtreecommitdiff
path: root/zenserver/cache/structuredcachestore.h
diff options
context:
space:
mode:
authorMartin Ridgers <[email protected]>2021-11-02 15:05:45 +0100
committerMartin Ridgers <[email protected]>2021-11-02 15:29:02 +0100
commit7f877f09f7780bb5675e80556dce00b2d7b573ee (patch)
treeb5da05cd110f34cef4c63b1f67047c957a0fe5ad /zenserver/cache/structuredcachestore.h
parentUnused variables fix (diff)
downloadzen-7f877f09f7780bb5675e80556dce00b2d7b573ee.tar.xz
zen-7f877f09f7780bb5675e80556dce00b2d7b573ee.zip
CacheBucket::BuildPath() uses a PathBuilder instead of a WideStrBuilder
Diffstat (limited to 'zenserver/cache/structuredcachestore.h')
-rw-r--r--zenserver/cache/structuredcachestore.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zenserver/cache/structuredcachestore.h b/zenserver/cache/structuredcachestore.h
index 5adc7492e..aabd91529 100644
--- a/zenserver/cache/structuredcachestore.h
+++ b/zenserver/cache/structuredcachestore.h
@@ -21,7 +21,7 @@ ZEN_THIRD_PARTY_INCLUDES_END
namespace zen {
-class WideStringBuilderBase;
+class PathBuilderBase;
class CasStore;
/******************************************************************************
@@ -186,7 +186,7 @@ private:
tsl::robin_map<IoHash, DiskLocation, IoHash::Hasher> m_Index;
uint64_t m_WriteCursor = 0;
- void BuildPath(WideStringBuilderBase& Path, const IoHash& HashKey);
+ void BuildPath(PathBuilderBase& Path, const IoHash& HashKey);
void PutStandaloneCacheValue(const IoHash& HashKey, const ZenCacheValue& Value);
bool GetStandaloneCacheValue(const DiskLocation& Loc, const IoHash& HashKey, ZenCacheValue& OutValue);
bool GetInlineCacheValue(const DiskLocation& Loc, ZenCacheValue& OutValue);