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

Unified Diff: src/deoptimizer.h

Issue 1518473003: Remove workaround for VS 2015 RC bug (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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 | no next file » | 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 929d837f497266832885481111a7186f5886fb60..1c6d9e190a871db5d2c7ce0054e2becbb8b87dee 100644
--- a/src/deoptimizer.h
+++ b/src/deoptimizer.h
@@ -738,12 +738,9 @@ class FrameDescription {
return malloc(size + frame_size - kPointerSize);
}
-// Bug in VS2015 RC, reported fixed in RTM. Microsoft bug: 1153909.
-#if !defined(_MSC_FULL_VER) || _MSC_FULL_VER != 190022816
void operator delete(void* pointer, uint32_t frame_size) {
free(pointer);
}
-#endif // _MSC_FULL_VER
void operator delete(void* description) {
free(description);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698