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

Unified Diff: src/deoptimizer.h

Issue 7745053: Fix warnings reported by MSVS for shared library build (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 4 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 | src/zone.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/deoptimizer.h
diff --git a/src/deoptimizer.h b/src/deoptimizer.h
index 033d92480bd8a113f0c4c39e1a3633ec6f56a6ca..8641261b1738d4610cee5f115ad1591dd1c80bcd 100644
--- a/src/deoptimizer.h
+++ b/src/deoptimizer.h
@@ -336,6 +336,10 @@ class FrameDescription {
return malloc(size + frame_size - kPointerSize);
}
+ void operator delete(void* pointer, uint32_t frame_size) {
+ free(pointer);
+ }
+
void operator delete(void* description) {
free(description);
}
« no previous file with comments | « no previous file | src/zone.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698