1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-26 14:37:44 +00:00

Fix nix build

This commit is contained in:
Mordred 2022-01-31 08:41:49 +01:00
parent bac72c1b76
commit a0c5bcc52c

View file

@ -59,7 +59,7 @@ namespace Sapphire
size_t size() const size_t size() const
{ {
size_t size = 0; size_t size = 0;
for( auto& it = m_objectCache.begin(); it != m_objectCache.end(); ++it ) for( auto it = m_objectCache.begin(); it != m_objectCache.end(); ++it )
size += it->second.size(); size += it->second.size();
return size; return size;