mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-20 20:46:03 +08:00
Fix KeyValues compile error.
This commit is contained in:
@ -2359,12 +2359,12 @@ void *KeyValues::operator new( size_t iAllocSize, int nBlockUse, const char *pFi
|
||||
//-----------------------------------------------------------------------------
|
||||
void KeyValues::operator delete( void *pMem )
|
||||
{
|
||||
KeyValuesSystem()->FreeKeyValuesMemory(pMem);
|
||||
KeyValuesSystem()->FreeKeyValuesMemory((KeyValues *)pMem);
|
||||
}
|
||||
|
||||
void KeyValues::operator delete( void *pMem, int nBlockUse, const char *pFileName, int nLine )
|
||||
{
|
||||
KeyValuesSystem()->FreeKeyValuesMemory(pMem);
|
||||
KeyValuesSystem()->FreeKeyValuesMemory((KeyValues *)pMem);
|
||||
}
|
||||
|
||||
void KeyValues::UnpackIntoStructure( KeyValuesUnpackStructure const *pUnpackTable, void *pDest )
|
||||
|
Reference in New Issue
Block a user