chore: remove add_realloc.patch (#29131)

This commit is contained in:
Jeremy Rose 2021-05-17 19:34:04 -07:00 committed by GitHub
parent 4fe8005f27
commit 33035f96a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 3 additions and 138 deletions

View file

@ -93,10 +93,6 @@ class ArrayBufferAllocator : public v8::ArrayBuffer::Allocator {
return result;
}
void* Realloc(void* data, size_t size) override {
return allocator_->root()->Realloc(data, size, "Electron");
}
void Free(void* data, size_t size) override {
allocator_->root()->Free(data);
}