Title: [140579] trunk/Source/WTF
Revision
140579
Author
[email protected]
Date
2013-01-23 13:23:28 -0800 (Wed, 23 Jan 2013)

Log Message

[CHROMIUM] Suppress c4267 build warnings in WTF for Win64 targets
https://bugs.webkit.org/show_bug.cgi?id=107721

Reviewed by Abhishek Arya.

* WTF.gyp/WTF.gyp:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (140578 => 140579)


--- trunk/Source/WTF/ChangeLog	2013-01-23 21:20:06 UTC (rev 140578)
+++ trunk/Source/WTF/ChangeLog	2013-01-23 21:23:28 UTC (rev 140579)
@@ -1,3 +1,12 @@
+2013-01-23  Justin Schuh  <[email protected]>
+
+        [CHROMIUM] Suppress c4267 build warnings in WTF for Win64 targets
+        https://bugs.webkit.org/show_bug.cgi?id=107721
+
+        Reviewed by Abhishek Arya.
+
+        * WTF.gyp/WTF.gyp:
+
 2013-01-23  Oliver Hunt  <[email protected]>
 
         Add RELEASE_ASSERT (and a few friends)

Modified: trunk/Source/WTF/WTF.gyp/WTF.gyp (140578 => 140579)


--- trunk/Source/WTF/WTF.gyp/WTF.gyp	2013-01-23 21:20:06 UTC (rev 140578)
+++ trunk/Source/WTF/WTF.gyp/WTF.gyp	2013-01-23 21:23:28 UTC (rev 140579)
@@ -149,7 +149,8 @@
         '<(chromium_src_dir)/third_party/icu/icu.gyp:icui18n',
         '<(chromium_src_dir)/third_party/icu/icu.gyp:icuuc',
       ],
-      'msvs_disabled_warnings': [4127, 4355, 4510, 4512, 4610, 4706, 4068],
+      # Disable c4267 warnings until we fix size_t to int truncations.
+      'msvs_disabled_warnings': [4127, 4355, 4510, 4512, 4610, 4706, 4068, 4267],
       'conditions': [
         ['OS=="win"', {
           'sources/': [
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to