Skip to content
Snippets Groups Projects

IDC: Remove double nulling

Merged Adam Edward Barton requested to merge abarton/athena:IDCChange into 23.0
1 file
+ 0
1
Compare changes
  • Side-by-side
  • Inline
@@ -35,7 +35,6 @@ IdentifiableCacheBase::IdentifiableCacheBase (IdentifierHash maxHash,
m_maker (maker), m_NMutexes(lockBucketSize), m_currentHashes(0)
{
if(m_NMutexes>0) m_HoldingMutexes = std::make_unique<mutexPair[]>(m_NMutexes);
for(auto &h : m_vec) h.store(nullptr, std::memory_order_relaxed); //Ensure initialized to null - I'm not sure if this is implicit
}
Loading