Title: [282413] trunk/Source/_javascript_Core
Revision
282413
Author
ross.kirsl...@sony.com
Date
2021-09-14 15:09:19 -0700 (Tue, 14 Sep 2021)

Log Message

[Win] JSRemoteInspector.h missing stdint include
https://bugs.webkit.org/show_bug.cgi?id=230275

Reviewed by Don Olmstead.

* API/JSRemoteInspector.h:
Include stdint for uint8_t definition on Windows.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/API/JSRemoteInspector.h (282412 => 282413)


--- trunk/Source/_javascript_Core/API/JSRemoteInspector.h	2021-09-14 21:52:04 UTC (rev 282412)
+++ trunk/Source/_javascript_Core/API/JSRemoteInspector.h	2021-09-14 22:09:19 UTC (rev 282413)
@@ -30,6 +30,7 @@
 #include <_javascript_Core/WebKitAvailability.h>
 
 #if defined(WIN32) || defined(_WIN32)
+#include <stdint.h>
 typedef int JSProcessID;
 #else
 #include <unistd.h>

Modified: trunk/Source/_javascript_Core/ChangeLog (282412 => 282413)


--- trunk/Source/_javascript_Core/ChangeLog	2021-09-14 21:52:04 UTC (rev 282412)
+++ trunk/Source/_javascript_Core/ChangeLog	2021-09-14 22:09:19 UTC (rev 282413)
@@ -1,3 +1,13 @@
+2021-09-14  Ross Kirsling  <ross.kirsl...@sony.com>
+
+        [Win] JSRemoteInspector.h missing stdint include
+        https://bugs.webkit.org/show_bug.cgi?id=230275
+
+        Reviewed by Don Olmstead.
+
+        * API/JSRemoteInspector.h:
+        Include stdint for uint8_t definition on Windows.
+
 2021-09-14  Xan Lopez  <x...@igalia.com>
 
         [JSC] Remove unnecessary exception checks in DFGOperations
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to