Start using auto keyword in for loops instead of long iterators.
Created attachment 215853 [details] Patch
Comment on attachment 215853 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=215853&action=review > Source/WebCore/rendering/RenderRegion.cpp:538 > + for (auto iter = m_renderObjectRegionStyle.begin(), end = m_renderObjectRegionStyle.end(); iter != end; ++iter) { I think you should change the other loops to have the end iterator in a local variable as well, since you're changing them anyway.
(In reply to comment #2) > (From update of attachment 215853 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=215853&action=review > > > Source/WebCore/rendering/RenderRegion.cpp:538 > > + for (auto iter = m_renderObjectRegionStyle.begin(), end = m_renderObjectRegionStyle.end(); iter != end; ++iter) { > > I think you should change the other loops to have the end iterator in a local variable as well, since you're changing them anyway. Sure, thanks for the review.
Created attachment 215891 [details] Patch for landing
Comment on attachment 215891 [details] Patch for landing Clearing flags on attachment: 215891 Committed r158559: <http://trac.webkit.org/changeset/158559>
All reviewed patches have been landed. Closing bug.