Title: [272459] trunk
Revision
272459
Author
[email protected]
Date
2021-02-05 23:34:41 -0800 (Fri, 05 Feb 2021)

Log Message

[MSVC] Catalog warnings
https://bugs.webkit.org/show_bug.cgi?id=199248

Unreviewed build fix.

Missed a warning generated when building AppleWin.


* Source/cmake/OptionsMSVC.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (272458 => 272459)


--- trunk/ChangeLog	2021-02-06 05:33:32 UTC (rev 272458)
+++ trunk/ChangeLog	2021-02-06 07:34:41 UTC (rev 272459)
@@ -3,6 +3,17 @@
         [MSVC] Catalog warnings
         https://bugs.webkit.org/show_bug.cgi?id=199248
 
+        Unreviewed build fix.
+
+        Missed a warning generated when building AppleWin.
+
+        * Source/cmake/OptionsMSVC.cmake:
+
+2021-02-05  Don Olmstead  <[email protected]>
+
+        [MSVC] Catalog warnings
+        https://bugs.webkit.org/show_bug.cgi?id=199248
+
         Reviewed by Fujii Hironori.
 
         Catalog all the MSVC warnings providing the message and a link to documentation

Modified: trunk/Source/cmake/OptionsMSVC.cmake (272458 => 272459)


--- trunk/Source/cmake/OptionsMSVC.cmake	2021-02-06 05:33:32 UTC (rev 272458)
+++ trunk/Source/cmake/OptionsMSVC.cmake	2021-02-06 07:34:41 UTC (rev 272459)
@@ -44,6 +44,9 @@
     /wd4305 # 'context' : truncation from 'type1' to 'type2'
             # https://docs.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-1-c4305
 
+    /wd4309 # 'conversion' : truncation of constant value
+            # https://docs.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-2-c4309
+
     /wd4312 # 'operation' : conversion from 'type1' to 'type2' of greater size
             # https://docs.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-1-c4312
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to