Title: [204635] trunk
Revision
204635
Author
[email protected]
Date
2016-08-19 10:10:57 -0700 (Fri, 19 Aug 2016)

Log Message

[Win] Warning fix.
https://bugs.webkit.org/show_bug.cgi?id=160994

Reviewed by Anders Carlsson.

Ignore warning when function declared with __declspec(noreturn) has non void return type.

* Source/cmake/OptionsWin.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (204634 => 204635)


--- trunk/ChangeLog	2016-08-19 17:07:32 UTC (rev 204634)
+++ trunk/ChangeLog	2016-08-19 17:10:57 UTC (rev 204635)
@@ -1,3 +1,14 @@
+2016-08-19  Per Arne Vollan  <[email protected]>
+
+        [Win] Warning fix.
+        https://bugs.webkit.org/show_bug.cgi?id=160994
+
+        Reviewed by Anders Carlsson.
+
+        Ignore warning when function declared with __declspec(noreturn) has non void return type.
+
+        * Source/cmake/OptionsWin.cmake:
+
 2016-08-17  Don Olmstead  <[email protected]>
 
         Use find_library within Windows build

Modified: trunk/Source/cmake/OptionsWin.cmake (204634 => 204635)


--- trunk/Source/cmake/OptionsWin.cmake	2016-08-19 17:07:32 UTC (rev 204634)
+++ trunk/Source/cmake/OptionsWin.cmake	2016-08-19 17:10:57 UTC (rev 204635)
@@ -124,9 +124,9 @@
         /wd4018 /wd4068 /wd4099 /wd4100 /wd4127 /wd4138 /wd4146 /wd4180 /wd4189
         /wd4201 /wd4244 /wd4251 /wd4267 /wd4275 /wd4288 /wd4291 /wd4305 /wd4309
         /wd4344 /wd4355 /wd4389 /wd4396 /wd4456 /wd4457 /wd4458 /wd4459 /wd4481
-        /wd4503 /wd4505 /wd4510 /wd4512 /wd4530 /wd4610 /wd4611 /wd4702 /wd4706
-        /wd4800 /wd4819 /wd4951 /wd4952 /wd4996 /wd6011 /wd6031 /wd6211 /wd6246
-        /wd6255 /wd6387
+        /wd4503 /wd4505 /wd4510 /wd4512 /wd4530 /wd4610 /wd4611 /wd4646 /wd4702
+        /wd4706 /wd4800 /wd4819 /wd4951 /wd4952 /wd4996 /wd6011 /wd6031 /wd6211
+        /wd6246 /wd6255 /wd6387
     )
 
     # Create pdb files for debugging purposes, also for Release builds
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to