Title: [241014] trunk/Source/_javascript_Core
Revision
241014
Author
[email protected]
Date
2019-02-06 01:35:16 -0800 (Wed, 06 Feb 2019)

Log Message

Build failure after r240431
https://bugs.webkit.org/show_bug.cgi?id=194330

Patch by Pablo Saavedra <[email protected]> on 2019-02-06
Reviewed by Žan Doberšek.

* API/glib/JSCOptions.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/API/glib/JSCOptions.cpp (241013 => 241014)


--- trunk/Source/_javascript_Core/API/glib/JSCOptions.cpp	2019-02-06 08:05:57 UTC (rev 241013)
+++ trunk/Source/_javascript_Core/API/glib/JSCOptions.cpp	2019-02-06 09:35:16 UTC (rev 241014)
@@ -73,6 +73,7 @@
     g_value_set_int(gValue, value);
 }
 
+#if CPU(ADDRESS64)
 static bool valueFromGValue(const GValue* gValue, unsigned& value)
 {
     value = g_value_get_uint(gValue);
@@ -83,6 +84,7 @@
 {
     g_value_set_uint(gValue, value);
 }
+#endif
 
 static bool valueFromGValue(const GValue* gValue, size_t& value)
 {
@@ -540,10 +542,12 @@
     return JSC_OPTION_INT;
 }
 
+#if CPU(ADDRESS64)
 static JSCOptionType jscOptionsType(unsigned)
 {
     return JSC_OPTION_UINT;
 }
+#endif
 
 static JSCOptionType jscOptionsType(size_t)
 {

Modified: trunk/Source/_javascript_Core/ChangeLog (241013 => 241014)


--- trunk/Source/_javascript_Core/ChangeLog	2019-02-06 08:05:57 UTC (rev 241013)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-02-06 09:35:16 UTC (rev 241014)
@@ -1,3 +1,12 @@
+2019-02-06  Pablo Saavedra  <[email protected]>
+
+        Build failure after r240431
+        https://bugs.webkit.org/show_bug.cgi?id=194330
+
+        Reviewed by Žan Doberšek.
+
+        * API/glib/JSCOptions.cpp:
+
 2019-02-05  Mark Lam  <[email protected]>
 
         Fix DFG's doesGC() for a few more nodes.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to