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

Unified Diff: Source/wtf/dtoa.cpp

Issue 27009003: Fixes for compilation of Blink on VS2013 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 2 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 | « Source/wtf/MathExtras.h ('k') | public/platform/WebFloatSize.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/dtoa.cpp
diff --git a/Source/wtf/dtoa.cpp b/Source/wtf/dtoa.cpp
index d2c1873799ab4d2cb72dc0714a9b9661357eb80e..41d1ae5f71afd149b6df0f7794c01abe109e0dac 100644
--- a/Source/wtf/dtoa.cpp
+++ b/Source/wtf/dtoa.cpp
@@ -44,6 +44,13 @@
#pragma warning(disable: 4244)
#pragma warning(disable: 4245)
#pragma warning(disable: 4554)
+
+#if _MSC_VER == 1800
+// TODO(scottmg): VS2013 currently ICEs on a bunch of functions in this file.
+// Upstream bug fixed in next release. See http://crbug.com/288498.
+#pragma optimize("", off)
+#endif
+
#endif
namespace WTF {
« no previous file with comments | « Source/wtf/MathExtras.h ('k') | public/platform/WebFloatSize.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698