Index: src/allocation-inl.h |
diff --git a/src/allocation-inl.h b/src/allocation-inl.h |
index 04a3fe667abca7fd54c46926033217b413ebcbab..d32db4b17fc18c314f3ce51adb087cfa2333c038 100644 |
--- a/src/allocation-inl.h |
+++ b/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); |
} |