|
@@ -1,6 +1,8 @@
|
|
#ifndef STACKALLOCATOR_H
|
|
#ifndef STACKALLOCATOR_H
|
|
#define STACKALLOCATOR_H
|
|
#define STACKALLOCATOR_H
|
|
|
|
|
|
|
|
+#include <new>
|
|
|
|
+
|
|
namespace StackAllocator {
|
|
namespace StackAllocator {
|
|
|
|
|
|
struct Pointer {
|
|
struct Pointer {
|
|
@@ -22,7 +24,7 @@ namespace StackAllocator {
|
|
|
|
|
|
Array(int n) : length(n), dataPointer(StackAllocator::allocate(sizeof (T), length)) {
|
|
Array(int n) : length(n), dataPointer(StackAllocator::allocate(sizeof (T), length)) {
|
|
for(int i = 0; i < length; i++) {
|
|
for(int i = 0; i < length; i++) {
|
|
- new (&(*this)[i]) T();
|
|
|
|
|
|
+ new ((*this) + i) T;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -45,7 +47,7 @@ namespace StackAllocator {
|
|
int grow(int n) {
|
|
int grow(int n) {
|
|
int add = StackAllocator::grow(dataPointer, sizeof (T), n);
|
|
int add = StackAllocator::grow(dataPointer, sizeof (T), n);
|
|
for(int i = length; i < length + add; i++) {
|
|
for(int i = length; i < length + add; i++) {
|
|
- new (&(*this)[i]) T();
|
|
|
|
|
|
+ new ((*this) + i) T();
|
|
}
|
|
}
|
|
length += add;
|
|
length += add;
|
|
return add;
|
|
return add;
|
|
@@ -54,10 +56,14 @@ namespace StackAllocator {
|
|
T& operator[](int index) {
|
|
T& operator[](int index) {
|
|
return static_cast<T*> (StackAllocator::get(dataPointer))[index];
|
|
return static_cast<T*> (StackAllocator::get(dataPointer))[index];
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
const T& operator[](int index) const {
|
|
const T& operator[](int index) const {
|
|
return static_cast<T*> (StackAllocator::get(dataPointer))[index];
|
|
return static_cast<T*> (StackAllocator::get(dataPointer))[index];
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ operator T*() {
|
|
|
|
+ return static_cast<T*> (StackAllocator::get(dataPointer));
|
|
|
|
+ }
|
|
};
|
|
};
|
|
}
|
|
}
|
|
|
|
|