mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-12 07:35:04 +00:00
@@ -8,8 +8,23 @@
|
||||
namespace rstl {
|
||||
struct rmemory_allocator {
|
||||
template < typename T >
|
||||
static void allocate(T*& out, int sz) {
|
||||
out = reinterpret_cast< T* >(new u8[sz]);
|
||||
static void allocate(T*& out, int count) {
|
||||
int size = count * sizeof(T);
|
||||
if (size == 0) {
|
||||
out = nullptr;
|
||||
} else {
|
||||
out = reinterpret_cast< T* >(new u8[size]);
|
||||
}
|
||||
}
|
||||
// TODO: this fixes a regswap in vector::reserve
|
||||
template < typename T >
|
||||
static T* allocate2(int count) {
|
||||
int size = count * sizeof(T);
|
||||
if (size == 0) {
|
||||
return nullptr;
|
||||
} else {
|
||||
return reinterpret_cast< T* >(new u8[size]);
|
||||
}
|
||||
}
|
||||
template < typename T >
|
||||
static void deallocate(T* ptr) {
|
||||
|
||||
Reference in New Issue
Block a user