aboutsummaryrefslogtreecommitdiff
path: root/zenserver/cache/structuredcache.cpp
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2022-05-05 11:01:44 +0200
committerDan Engelbrecht <[email protected]>2022-05-05 11:01:44 +0200
commitf5273c981f66834d70db680cff5deb47fd8d1274 (patch)
treed9d3e7a9f1beb0497c3417f7c21d52ccd3d9174c /zenserver/cache/structuredcache.cpp
parentrevert back constructor order for ZenCacheStore (diff)
downloadzen-f5273c981f66834d70db680cff5deb47fd8d1274.tar.xz
zen-f5273c981f66834d70db680cff5deb47fd8d1274.zip
reverted unnecessary changes
Diffstat (limited to 'zenserver/cache/structuredcache.cpp')
-rw-r--r--zenserver/cache/structuredcache.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/zenserver/cache/structuredcache.cpp b/zenserver/cache/structuredcache.cpp
index 69ee32bd6..0f16f6785 100644
--- a/zenserver/cache/structuredcache.cpp
+++ b/zenserver/cache/structuredcache.cpp
@@ -72,13 +72,13 @@ struct PutRequestData
//////////////////////////////////////////////////////////////////////////
-HttpStructuredCacheService::HttpStructuredCacheService(ZenCacheStore& CacheStore,
+HttpStructuredCacheService::HttpStructuredCacheService(ZenCacheStore& InCacheStore,
CidStore& InCidStore,
HttpStatsService& StatsService,
HttpStatusService& StatusService,
UpstreamCache& UpstreamCache)
: m_Log(logging::Get("cache"))
-, m_CacheStore(CacheStore)
+, m_CacheStore(InCacheStore)
, m_StatsService(StatsService)
, m_StatusService(StatusService)
, m_CidStore(InCidStore)