Bug 146014

Summary: [SOUP] Fix return-type-c-linkage warning after r185553
Product: WebKit Reporter: Csaba Osztrogonác <ossy>
Component: New BugsAssignee: Michael Catanzaro <mcatanzaro>
Status: RESOLVED FIXED    
Severity: Normal CC: cgarcia, commit-queue, mcatanzaro, svillar
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on:    
Bug Blocks: 145121, 145969    
Attachments:
Description Flags
Patch none

Description Csaba Osztrogonác 2015-06-16 04:11:43 PDT
After http://trac.webkit.org/changeset/185553 we get
the following warning if we build WebKit with clang:

../../Source/WebCore/platform/network/soup/WebKitSoupRequestGeneric.h:61:33: warning: 'webkitSoupRequestGenericGetRequest' has C-linkage specified, but returns user-defined type 'const WebCore::ResourceRequest &' which is incompatible with C [-Wreturn-type-c-linkage]
const WebCore::ResourceRequest& webkitSoupRequestGenericGetRequest(WebKitSoupRequestGeneric*);
                                ^
1 warning generated.
Comment 1 Michael Catanzaro 2015-06-19 14:47:04 PDT
As much as I hate to convert a nice reference into a pointer, the alternative is to move the G_END_DECLS up above those function declarations, and that would be weird.
Comment 2 Michael Catanzaro 2015-06-19 14:49:23 PDT
Created attachment 255229 [details]
Patch
Comment 3 WebKit Commit Bot 2015-06-19 16:26:35 PDT
Comment on attachment 255229 [details]
Patch

Clearing flags on attachment: 255229

Committed r185774: <http://trac.webkit.org/changeset/185774>
Comment 4 WebKit Commit Bot 2015-06-19 16:26:40 PDT
All reviewed patches have been landed.  Closing bug.