[Webkit-unassigned] [Bug 19969] New: gcc 3.4.6 compiler bug
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu Jul 10 01:48:02 PDT 2008
https://bugs.webkit.org/show_bug.cgi?id=19969
Summary: gcc 3.4.6 compiler bug
Product: WebKit
Version: 526+ (Nightly build)
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: Normal
Priority: P2
Component: WebKit Gtk
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: cbergstrom at netsyncro.com
There's a bug for gcc-3.4.6 on hardened gentoo.. I haven't confirmed against a
vanilla build, but it's a recent regression and two line fix.
--- WebKit-r35067/WebCore/svg/SynchronizableTypeWrapper.h.orig 2008-07-10
05:36:20.000000000 +0200
+++ WebKit-r35067/WebCore/svg/SynchronizableTypeWrapper.h 2008-07-10
05:37:28.000000000 +0200
@@ -159,7 +159,7 @@
inline SynchronizableTypeWrapper<RefPtr<StoredPointerType>
>::SynchronizableTypeWrapper(const PassRefPtr<StoredPointerType>& type)
: Base()
{
- m_value = type;
+ this->m_value = type;
}
template<typename StoredPointerType>
@@ -172,7 +172,7 @@
template<typename StoredPointerType>
inline SynchronizableTypeWrapper<RefPtr<StoredPointerType> >::operator
StoredPointerType*() const
{
- return m_value.get();
+ return this->m_value.get();
}
};
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the webkit-unassigned
mailing list