[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

yurys at chromium.org yurys at chromium.org
Thu Apr 8 00:40:19 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit f3e988b4bafa08987147e99ea18a3f6631ac5e33
Author: yurys at chromium.org <yurys at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Dec 17 17:06:01 2009 +0000

    2009-12-17  Yury Semikhatsky  <yurys at chromium.org>
    
            Reviewed by David Levin.
    
            Provide explicit implementation of 'non-template' WebVector<T>::operator=
    
            https://bugs.webkit.org/show_bug.cgi?id=32363
    
            * public/WebVector.h:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52255 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index 9857b9c..c4ff1bc 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,3 +1,13 @@
+2009-12-17  Yury Semikhatsky  <yurys at chromium.org>
+
+        Reviewed by David Levin.
+
+        Provide explicit implementation of 'non-template' WebVector<T>::operator=
+
+        https://bugs.webkit.org/show_bug.cgi?id=32363
+
+        * public/WebVector.h:
+
 2009-12-16  Fumitoshi Ukai  <ukai at chromium.org>
 
         Unreviewed, build fix.
diff --git a/WebKit/chromium/public/WebVector.h b/WebKit/chromium/public/WebVector.h
index d1f99b4..0520895 100644
--- a/WebKit/chromium/public/WebVector.h
+++ b/WebKit/chromium/public/WebVector.h
@@ -84,6 +84,13 @@ public:
         initializeFrom(other.size() ? &other[0] : 0, other.size());
     }
 
+    WebVector& operator=(const WebVector& other)
+    {
+        if (this != &other)
+            assign(other);
+        return *this;
+    }
+
     template <typename C>
     WebVector<T>& operator=(const C& other)
     {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list