From bb940247d95a65ac4209c8bb7848ab3bc5205bf8 Mon Sep 17 00:00:00 2001 From: scottmg Date: Tue, 28 Apr 2015 04:33:40 -0700 Subject: [PATCH] Update _MSC_FULL_VER for 'final' RC bug workaround Repeat of https://codereview.chromium.org/1084763002/. The 'final' RC has changed the version number, but the bug will not be fixed until RTM. LOG=N R=jochen@chromium.org BUG=chromium:440500 Review URL: https://codereview.chromium.org/1108193002 Cr-Commit-Position: refs/heads/master@{#28106} --- src/deoptimizer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deoptimizer.h b/src/deoptimizer.h index 9ad20d9..c364a5f 100644 --- a/src/deoptimizer.h +++ b/src/deoptimizer.h @@ -531,7 +531,7 @@ class FrameDescription { } // Bug in VS2015 RC, reported fixed in RTM. Microsoft bug: 1153909. -#if !defined(_MSC_FULL_VER) || _MSC_FULL_VER != 190022720 +#if !defined(_MSC_FULL_VER) || _MSC_FULL_VER != 190022816 void operator delete(void* pointer, uint32_t frame_size) { free(pointer); } -- 2.7.4