From 5265052f043d4836ba10c040018d7bcea6a0066d Mon Sep 17 00:00:00 2001 From: GAMMACASE <31375974+GAMMACASE@users.noreply.github.com> Date: Sat, 25 May 2024 05:33:59 +0300 Subject: [PATCH] Update CSchemaSystemTypeScope & CThreadSpinMutex --- public/schemasystem/schemasystem.h | 2 -- public/tier0/threadtools.h | 4 +--- 2 files changed, 1 insertion(+), 5 deletions(-) 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