[webkit-reviews] review granted: [Bug 131574] Lots of compositing test failures after r167152 : [Attachment 229268] part 2

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Apr 14 08:36:01 PDT 2014


Darin Adler <darin at apple.com> has granted Tim Horton <thorton at apple.com>'s
request for review:
Bug 131574: Lots of compositing test failures after r167152
https://bugs.webkit.org/show_bug.cgi?id=131574

Attachment 229268: part 2
https://bugs.webkit.org/attachment.cgi?id=229268&action=review

------- Additional Comments from Darin Adler <darin at apple.com>
View in context: https://bugs.webkit.org/attachment.cgi?id=229268&action=review


> Source/WebCore/platform/graphics/GraphicsLayer.cpp:596
> +    for (size_t childIndex = 0; childIndex < children.size(); childIndex++)
{
> +	   GraphicsLayer* child = children[childIndex];

This should use a C++11 for loop:

    for (auto* child : children) {


More information about the webkit-reviews mailing list