a96a7a4a0a
Qt 4.7.1 is a bug-fix release. It maintains both forward and backward compatibility (source and binary) with Qt 4.7.0. For more details, refer to the online documentation included in this distribution. The documentation is also available online: http://qt.nokia.com/doc/4.7 The Qt version 4.7 series is binary compatible with the 4.6.x series. Applications compiled for 4.6 will continue to run with 4.7. Changes 4.7.0: Qt 4.7 introduces many new features and improvements as well as bugfixes over the 4.6.x series. For more details, refer to the online documentation included in this distribution. The documentation is also available online: http://qt.nokia.com/doc/4.7 The Qt version 4.7 series is binary compatible with the 4.6.x series. Applications compiled for 4.6 will continue to run with 4.7.
22 lines
897 B
Text
22 lines
897 B
Text
$NetBSD: patch-au,v 1.5 2010/11/15 13:05:45 adam Exp $
|
|
|
|
--- src/3rdparty/javascriptcore/JavaScriptCore/runtime/JSValue.h.orig 2010-09-10 09:05:24.000000000 +0000
|
|
+++ src/3rdparty/javascriptcore/JavaScriptCore/runtime/JSValue.h
|
|
@@ -491,7 +491,7 @@ namespace JSC {
|
|
u.asBits.tag = CellTag;
|
|
else
|
|
u.asBits.tag = EmptyValueTag;
|
|
- u.asBits.payload = reinterpret_cast<int32_t>(ptr);
|
|
+ u.asBits.payload = reinterpret_cast<intptr_t>(ptr);
|
|
#if ENABLE(JSC_ZOMBIES)
|
|
ASSERT(!isZombie());
|
|
#endif
|
|
@@ -503,7 +503,7 @@ namespace JSC {
|
|
u.asBits.tag = CellTag;
|
|
else
|
|
u.asBits.tag = EmptyValueTag;
|
|
- u.asBits.payload = reinterpret_cast<int32_t>(const_cast<JSCell*>(ptr));
|
|
+ u.asBits.payload = reinterpret_cast<intptr_t>(const_cast<JSCell*>(ptr));
|
|
#if ENABLE(JSC_ZOMBIES)
|
|
ASSERT(!isZombie());
|
|
#endif
|