Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Unified Diff: src/d8.cc

Issue 2895923002: Fix compilation failure due to overload of virtual function (Closed)
Patch Set: Add Reserver and SetProtection in test array buffer allocators Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | test/mkgrokdump/mkgrokdump.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/d8.cc
diff --git a/src/d8.cc b/src/d8.cc
index efa8dbc6331bc5f30cc0256dd6851f550edc462c..3bb5832f0588cd46d03d13c4535ff6b3817f6321 100644
--- a/src/d8.cc
+++ b/src/d8.cc
@@ -135,6 +135,7 @@ class ShellArrayBufferAllocator : public ArrayBufferAllocatorBase {
return malloc(length);
#endif
}
+ using ArrayBufferAllocatorBase::Free;
void Free(void* data, size_t length) override {
#if USE_VM
if (RoundToPageSize(&length)) {
« no previous file with comments | « no previous file | test/mkgrokdump/mkgrokdump.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698