From c5867f9e510e3ad8f69132c638cbe3cf519bce06 Mon Sep 17 00:00:00 2001 From: GAMMACASE <31375974+GAMMACASE@users.noreply.github.com> Date: Sat, 25 May 2024 05:41:26 +0300 Subject: [PATCH] Add CUtlOrderedMap stub --- public/schemasystem/schematypes.h | 2 +- public/tier1/utlmap.h | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/public/schemasystem/schematypes.h b/public/schemasystem/schematypes.h index 0dad3d2d..fbeb9d3e 100644 --- a/public/schemasystem/schematypes.h +++ b/public/schemasystem/schematypes.h @@ -138,7 +138,7 @@ template class CSchemaPtrMap { public: - CUtlMap m_Map; + CUtlOrderedMap m_Map; CThreadFastMutex m_Mutex; }; diff --git a/public/tier1/utlmap.h b/public/tier1/utlmap.h index 13cb3ad5..a0bd5c7d 100644 --- a/public/tier1/utlmap.h +++ b/public/tier1/utlmap.h @@ -1,4 +1,4 @@ -//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============// +//========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============// // // Purpose: // @@ -200,4 +200,9 @@ protected: //----------------------------------------------------------------------------- +// AMNOTE: Currently a stub over CUtlMap, needs a complete implementation +template > +struct CUtlOrderedMap : public CUtlMap +{}; + #endif // UTLMAP_H