[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.17-1283-gcf603cf
yurys at chromium.org
yurys at chromium.org
Tue Jan 5 23:52:01 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 38d203b05907f37254a23df763d3e37202c226dd
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