[Webkit-unassigned] [Bug 78552] SharedBuffer's Vector<RetainPtr<CFDataRef> > should have a typedef

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Aug 7 11:51:34 PDT 2019


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

David Kilzer (:ddkilzer) <ddkilzer at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |ddkilzer at webkit.org
         Resolution|---                         |CONFIGURATION CHANGED

--- Comment #1 from David Kilzer (:ddkilzer) <ddkilzer at webkit.org> ---
SharedBufferCF.cpp no longer has this code, and the only data structure it iterates over:

    mutable DataSegmentVector m_segments;

Already has the equivalent of a typedef:

    using DataSegmentVector = Vector<DataSegmentVectorEntry, 1>;
    DataSegmentVector::const_iterator begin() const { return m_segments.begin(); }
    DataSegmentVector::const_iterator end() const { return m_segments.end(); }

So moving to RESOLVED/CONFIGURATION CHANGED.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20190807/d9d5c550/attachment-0001.html>


More information about the webkit-unassigned mailing list