Add CStdMemAlloc::Realloc

This commit is contained in:
Kawe Mazidjatari 2022-07-22 17:07:48 +02:00
parent c405c23934
commit c7cd6b2971

View File

@ -7,7 +7,13 @@ public:
template<typename T>
T* Alloc(size_t nSize)
{
const int index = 1;
const int index = 0;
return CallVFunc<T*>(index, this, nSize);
}
template<typename T>
T* Realloc(T* pMem, size_t nSize)
{
const int index = 2;
return CallVFunc<T*>(index, this, nSize);
}
template<typename T>