[Webkit-unassigned] [Bug 194330] Build failure after r240431

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Feb 6 00:50:49 PST 2019


https://bugs.webkit.org/show_bug.cgi?id=194330

--- Comment #3 from Pablo Saavedra <psaavedra at igalia.com> ---
Maybe this one is more likely:

```
diff --git a/Source/JavaScriptCore/API/glib/JSCOptions.cpp b/Source/JavaScriptCore/API/glib/JSCOptions.cpp
index a9dc7e6c683..222ca13e873 100644
--- a/Source/JavaScriptCore/API/glib/JSCOptions.cpp
+++ b/Source/JavaScriptCore/API/glib/JSCOptions.cpp
@@ -73,6 +73,7 @@ static void valueToGValue(int32_t value, GValue* gValue)
     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 @@ static void valueToGValue(unsigned value, GValue* gValue)
 {
     g_value_set_uint(gValue, value);
 }
+#endif

 static bool valueFromGValue(const GValue* gValue, size_t& value)
 {
@@ -540,10 +542,12 @@ static JSCOptionType jscOptionsType(int)
     return JSC_OPTION_INT;
 }

+#if CPU(ADDRESS64)
 static JSCOptionType jscOptionsType(unsigned)
 {
     return JSC_OPTION_UINT;
 }
+#endif

 static JSCOptionType jscOptionsType(size_t)
 {
```

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20190206/d6658369/attachment.html>


More information about the webkit-unassigned mailing list