in src/outmdsd/ConcurrentMap.h [125:129]
void ForEachUnsafe(const std::function<void(ValueType)>& fn)
{
std::for_each(m_cache.begin(), m_cache.end(),
[fn](typename decltype(m_cache)::value_type & item) { fn(item.second); });
}