aboutsummaryrefslogtreecommitdiff
path: root/zenserver/cache
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2022-05-25 15:33:40 +0200
committerDan Engelbrecht <[email protected]>2022-05-25 15:33:40 +0200
commitd8564b9a02ebb89887e93a8951206faf82313607 (patch)
tree091ceb54497f3a953eb64a1db1e93aa887de0476 /zenserver/cache
parentbugfixes and test for namespace drop (diff)
downloadzen-d8564b9a02ebb89887e93a8951206faf82313607.tar.xz
zen-d8564b9a02ebb89887e93a8951206faf82313607.zip
NameSpaceMap -> NamespaceMap
Diffstat (limited to 'zenserver/cache')
-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 c07c3e382..c226074fe 100644
--- a/zenserver/cache/structuredcachestore.h
+++ b/zenserver/cache/structuredcachestore.h
@@ -388,10 +388,10 @@ private:
ZenCacheNamespace* GetNamespace(std::string_view Namespace);
void IterateNamespaces(const std::function<void(std::string_view Namespace, ZenCacheNamespace& Store)>& Callback) const;
- typedef std::unordered_map<std::string, std::unique_ptr<ZenCacheNamespace>> NameSpaceMap;
+ typedef std::unordered_map<std::string, std::unique_ptr<ZenCacheNamespace>> NamespaceMap;
mutable RwLock m_NamespacesLock;
- NameSpaceMap m_Namespaces;
+ NamespaceMap m_Namespaces;
std::vector<std::unique_ptr<ZenCacheNamespace>> m_DroppedNamespaces;
CasGc& m_Gc;