[Webkit-unassigned] [Bug 128185] (try)append and insert operations don't need new operator for PODs

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Feb 11 15:16:16 PST 2014


https://bugs.webkit.org/show_bug.cgi?id=128185


Darin Adler <darin at apple.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #223837|review?                     |review+
               Flag|                            |




--- Comment #16 from Darin Adler <darin at apple.com>  2014-02-11 15:13:26 PST ---
(From update of attachment 223837)
View in context: https://bugs.webkit.org/attachment.cgi?id=223837&action=review

> Source/WTF/wtf/Vector.h:161
> +    template<typename U>
> +    static void uninitializedCopy(const T* src, const T* srcEnd, U* dst)
> +    {
> +        VectorCopier<false, T>::uninitializedCopy(src, srcEnd, dst);
> +    }

Maybe instead we should make VectorCopier<true, T> derive from VectorCopier<false, T>?

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list