aboutsummaryrefslogtreecommitdiff
path: root/zenserver/cache/structuredcachestore.cpp
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2022-04-01 16:08:53 +0200
committerDan Engelbrecht <[email protected]>2022-04-01 16:08:53 +0200
commit345cf462e89ba37867abe4c0722ce2549dddc4ca (patch)
tree570dc1438995d091b180c0792a20f50e639df87c /zenserver/cache/structuredcachestore.cpp
parentmake sure we allocate disk space when we set file size (diff)
downloadzen-345cf462e89ba37867abe4c0722ce2549dddc4ca.tar.xz
zen-345cf462e89ba37867abe4c0722ce2549dddc4ca.zip
linux fixes
Diffstat (limited to 'zenserver/cache/structuredcachestore.cpp')
-rw-r--r--zenserver/cache/structuredcachestore.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/zenserver/cache/structuredcachestore.cpp b/zenserver/cache/structuredcachestore.cpp
index eec548f1b..79bb8486e 100644
--- a/zenserver/cache/structuredcachestore.cpp
+++ b/zenserver/cache/structuredcachestore.cpp
@@ -60,8 +60,8 @@ SaveCompactBinaryObject(const fs::path& Path, const CbObject& Object)
}
ZenCacheStore::ZenCacheStore(CasGc& Gc, const std::filesystem::path& RootDir)
-: m_RootDir(RootDir)
-, GcStorage(Gc)
+: GcStorage(Gc)
+, m_RootDir(RootDir)
, GcContributor(Gc)
, m_DiskLayer(RootDir)
{