Commit 667efbd0 authored by brucedawson's avatar brucedawson Committed by Commit bot

Remove workaround for VS 2015 RC bug

R=mstarzinger@chromium.org
LOG=N
BUG=440500

Review URL: https://codereview.chromium.org/1518473003

Cr-Commit-Position: refs/heads/master@{#32734}
parent 8a7e6fc3
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment