tier1: fpermissive fixes
This commit is contained in:
parent
255df8f51f
commit
b81dfa0853
1 changed files with 4 additions and 4 deletions
|
@ -135,10 +135,10 @@ CUtlBlockMemory<T,I>::~CUtlBlockMemory()
|
|||
template< class T, class I >
|
||||
void CUtlBlockMemory<T,I>::Swap( CUtlBlockMemory< T, I > &mem )
|
||||
{
|
||||
swap( m_pMemory, mem.m_pMemory );
|
||||
swap( m_nBlocks, mem.m_nBlocks );
|
||||
swap( m_nIndexMask, mem.m_nIndexMask );
|
||||
swap( m_nIndexShift, mem.m_nIndexShift );
|
||||
this->swap( m_pMemory, mem.m_pMemory );
|
||||
this->swap( m_nBlocks, mem.m_nBlocks );
|
||||
this->swap( m_nIndexMask, mem.m_nIndexMask );
|
||||
this->swap( m_nIndexShift, mem.m_nIndexShift );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue