[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.21-584-g1e41756

vestbo at webkit.org vestbo at webkit.org
Fri Feb 26 22:16:45 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit 8e5d04bcf0a1cd250245bbc13949f125e11bb018
Author: vestbo at webkit.org <vestbo at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Feb 10 11:58:46 2010 +0000

    Get rid of WINSCW hack for UnSpecifiedBoolType
    
    Patch by Yongjun Zhang <yongjun.zhang at nokia.com> on 2009-10-06
    Reviewed by Simon Hausmann.
    
    Add parenthesis around (RefPtr::*UnspecifiedBoolType) to make the WINSCW
    compiler work with the default UnSpecifiedBoolType() operator.
    
    https://bugs.webkit.org/show_bug.cgi?id=28054
    
    * wtf/RefPtr.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@54595 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 2002418..80da7f8 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,16 @@
+2009-10-06  Yongjun Zhang  <yongjun.zhang at nokia.com>
+
+        Reviewed by Simon Hausmann.
+
+        Get rid of WINSCW hack for UnSpecifiedBoolType
+
+        Add parenthesis around (RefPtr::*UnspecifiedBoolType) to make the WINSCW
+        compiler work with the default UnSpecifiedBoolType() operator.
+
+        https://bugs.webkit.org/show_bug.cgi?id=28054
+
+        * wtf/RefPtr.h:
+
 2010-02-09  Jedrzej Nowacki  <jedrzej.nowacki at nokia.com>
 
         Reviewed by Simon Hausmann.
diff --git a/JavaScriptCore/wtf/RefPtr.h b/JavaScriptCore/wtf/RefPtr.h
index e6d1047..e527ced 100644
--- a/JavaScriptCore/wtf/RefPtr.h
+++ b/JavaScriptCore/wtf/RefPtr.h
@@ -65,12 +65,8 @@ namespace WTF {
         bool operator!() const { return !m_ptr; }
     
         // This conversion operator allows implicit conversion to bool but not to other integer types.
-#if COMPILER(WINSCW)
-        operator bool() const { return m_ptr; }
-#else
-        typedef T* RefPtr::*UnspecifiedBoolType;
+        typedef T* (RefPtr::*UnspecifiedBoolType);
         operator UnspecifiedBoolType() const { return m_ptr ? &RefPtr::m_ptr : 0; }
-#endif
         
         RefPtr& operator=(const RefPtr&);
         RefPtr& operator=(T*);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list