Changeset 52255 in webkit


Ignore:
Timestamp:
Dec 17, 2009 9:06:01 AM (14 years ago)
Author:
yurys@chromium.org
Message:

2009-12-17 Yury Semikhatsky <yurys@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:
Location:
trunk/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r52237 r52255  
     12009-12-17  Yury Semikhatsky  <yurys@chromium.org>
     2
     3        Reviewed by David Levin.
     4
     5        Provide explicit implementation of 'non-template' WebVector<T>::operator=
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=32363
     8
     9        * public/WebVector.h:
     10
    1112009-12-16  Fumitoshi Ukai  <ukai@chromium.org>
    212
  • trunk/WebKit/chromium/public/WebVector.h

    r50681 r52255  
    8585    }
    8686
     87    WebVector& operator=(const WebVector& other)
     88    {
     89        if (this != &other)
     90            assign(other);
     91        return *this;
     92    }
     93
    8794    template <typename C>
    8895    WebVector<T>& operator=(const C& other)
Note: See TracChangeset for help on using the changeset viewer.