Bug 122161

Summary: [iOS] WebCore fails to build with newer versions of clang
Product: WebKit Reporter: Daniel Bates <dbates>
Component: WebCore Misc.Assignee: Daniel Bates <dbates>
Status: RESOLVED FIXED    
Severity: Normal CC: ddkilzer, mrowe
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch darin: review+

Description Daniel Bates 2013-10-01 09:06:40 PDT
Make WebCore build with newer versions of clang.
Comment 1 Daniel Bates 2013-10-01 09:13:08 PDT
Created attachment 213090 [details]
Patch
Comment 2 Darin Adler 2013-10-01 09:22:40 PDT
Comment on attachment 213090 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=213090&action=review

> Source/WebCore/platform/network/mac/ResourceResponseMac.mm:97
> +static const size_t numberOfCommonHeaderFields = sizeof(commonHeaderFields) / sizeof(AtomicString*);

Would be much nicer to use the WTF_ARRAY_LENGTH macro instead and not give a name to this. The code here actually divides the size of the array by the size of a pointer to a different type!

> Source/WebCore/platform/network/mac/ResourceResponseMac.mm:135
> +            for (size_t i = 0; i < numberOfCommonHeaderFields; i++) {

Would just say:

    for (unsigned i = 0; i < WTF_ARRAY_LENGTH(commonHeaderFields); ++i)
Comment 3 Daniel Bates 2013-10-01 09:30:32 PDT
(In reply to comment #2)
> (From update of attachment 213090 [details])
> View in context: https://bugs.webkit.org/attachment.cgi?id=213090&action=review
> 
> > Source/WebCore/platform/network/mac/ResourceResponseMac.mm:97
> > +static const size_t numberOfCommonHeaderFields = sizeof(commonHeaderFields) / sizeof(AtomicString*);
> 
> Would be much nicer to use the WTF_ARRAY_LENGTH macro instead and not give a name to this. The code here actually divides the size of the array by the size of a pointer to a different type!
> 

Oops! You're right.

> > Source/WebCore/platform/network/mac/ResourceResponseMac.mm:135
> > +            for (size_t i = 0; i < numberOfCommonHeaderFields; i++) {
> 
> Would just say:
> 
>     for (unsigned i = 0; i < WTF_ARRAY_LENGTH(commonHeaderFields); ++i)

Will fix.
Comment 4 Daniel Bates 2013-10-01 09:39:07 PDT
Committed r156715: <http://trac.webkit.org/changeset/156715>