summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/v8/src/allocation-inl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/v8/src/allocation-inl.h')
-rw-r--r--src/3rdparty/v8/src/allocation-inl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/v8/src/allocation-inl.h b/src/3rdparty/v8/src/allocation-inl.h
index 04a3fe6..d32db4b 100644
--- a/src/3rdparty/v8/src/allocation-inl.h
+++ b/src/3rdparty/v8/src/allocation-inl.h
@@ -34,12 +34,12 @@ namespace v8 {
namespace internal {
-void* PreallocatedStorage::New(size_t size) {
+void* PreallocatedStorageAllocationPolicy::New(size_t size) {
return Isolate::Current()->PreallocatedStorageNew(size);
}
-void PreallocatedStorage::Delete(void* p) {
+void PreallocatedStorageAllocationPolicy::Delete(void* p) {
return Isolate::Current()->PreallocatedStorageDelete(p);
}