mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Add CStdMemAlloc::Realloc
This commit is contained in:
parent
c405c23934
commit
c7cd6b2971
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user