Enable tier0/threadtools.h to compile under GCC with -std=c++20 (#242)

This commit is contained in:
James Puleo 2024-05-18 07:59:31 -04:00 committed by GitHub
parent 5c00eb77e2
commit c597bda668
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -784,7 +784,7 @@ private:
MUTEX_TYPE &m_lock;
// Disallow copying
CAutoLockT<MUTEX_TYPE>( const CAutoLockT<MUTEX_TYPE> & );
CAutoLockT( const CAutoLockT<MUTEX_TYPE> & );
CAutoLockT<MUTEX_TYPE> &operator=( const CAutoLockT<MUTEX_TYPE> & );
};