Title: [123162] trunk/Source/WTF
Revision
123162
Author
[email protected]
Date
2012-07-19 16:40:54 -0700 (Thu, 19 Jul 2012)

Log Message

[Chromium] disable warning on Windows from gcc-only pragma in Assertions.cpp"
https://bugs.webkit.org/show_bug.cgi?id=91776

Patch by Scott Graham <[email protected]> on 2012-07-19
Reviewed by Ryosuke Niwa.

Avoids:
    ...\source\wtf\wtf\assertions.cpp(31) : warning C4068: unknown pragma

* WTF.gyp/WTF.gyp:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (123161 => 123162)


--- trunk/Source/WTF/ChangeLog	2012-07-19 23:32:04 UTC (rev 123161)
+++ trunk/Source/WTF/ChangeLog	2012-07-19 23:40:54 UTC (rev 123162)
@@ -1,3 +1,15 @@
+2012-07-19  Scott Graham  <[email protected]>
+
+        [Chromium] disable warning on Windows from gcc-only pragma in Assertions.cpp"
+        https://bugs.webkit.org/show_bug.cgi?id=91776
+
+        Reviewed by Ryosuke Niwa.
+
+        Avoids:
+            ...\source\wtf\wtf\assertions.cpp(31) : warning C4068: unknown pragma
+
+        * WTF.gyp/WTF.gyp:
+
 2012-07-19  Robert Sesek  <[email protected]>
 
         [chromium][Mac] Switch the MACOSX_DEPLOYMENT_TARGET to 10.6

Modified: trunk/Source/WTF/WTF.gyp/WTF.gyp (123161 => 123162)


--- trunk/Source/WTF/WTF.gyp/WTF.gyp	2012-07-19 23:32:04 UTC (rev 123161)
+++ trunk/Source/WTF/WTF.gyp/WTF.gyp	2012-07-19 23:40:54 UTC (rev 123162)
@@ -154,7 +154,7 @@
         '<(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],
+      'msvs_disabled_warnings': [4127, 4355, 4510, 4512, 4610, 4706, 4068],
       'conditions': [
         ['OS=="win"', {
           'sources/': [
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to