diff --git a/public/schemasystem/schemasystem.h b/public/schemasystem/schemasystem.h index 1292e517..c52da9d4 100644 --- a/public/schemasystem/schemasystem.h +++ b/public/schemasystem/schemasystem.h @@ -94,9 +94,7 @@ public: CSchemaPtrMap m_Atomics; CSchemaPtrMap m_AtomicsT; CSchemaPtrMap m_AtomicsCollectionOfT; - CSchemaPtrMap m_AtomicsTF; CSchemaPtrMap m_AtomicsTT; - CSchemaPtrMap m_AtomicsTTF; CSchemaPtrMap m_AtomicsI; CSchemaPtrMap m_DeclaredClasses; CSchemaPtrMap m_DeclaredEnums; diff --git a/public/tier0/threadtools.h b/public/tier0/threadtools.h index 2efd34db..0440cc41 100644 --- a/public/tier0/threadtools.h +++ b/public/tier0/threadtools.h @@ -711,8 +711,7 @@ class CThreadSpinMutex public: CThreadSpinMutex( const char* pDebugName = NULL ) : m_ownerID( 0 ), - m_depth( 0 ), - m_pDebugName( NULL/*pDebugName*/ ) + m_depth( 0 ) { } @@ -814,7 +813,6 @@ public: private: volatile ThreadId_t m_ownerID; int m_depth; - const char* m_pDebugName; }; class ALIGN128 CAlignedThreadFastMutex : public CThreadSpinMutex