1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 20:16:10 +08:00

Correct certain type definitions

Definitions were retrieved from schema dumps
This commit is contained in:
GAMMACASE
2025-03-05 20:19:50 +03:00
parent fc5ff4074b
commit 3b07e2a008
5 changed files with 6 additions and 4 deletions

View File

@ -753,7 +753,7 @@ void CUtlLeanVectorImpl<B, T, I>::DestructElements( T* pElement, const T* pEnd )
template < class T, class I = short >
using CUtlLeanVector = CUtlLeanVectorImpl< CUtlLeanVectorBase< T, I >, T, I >;
template < class T, size_t N = 3, class I = short >
template < class T, size_t N = 3, class I = int >
using CUtlLeanVectorFixedGrowable = CUtlLeanVectorImpl< CUtlLeanVectorFixedGrowableBase< T, N, I >, T, I >;
#include "tier0/memdbgoff.h"