ObjFW  Check-in [b740a5bba1]

Overview
Comment:Add missing import to make GCC happy
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: b740a5bba1b6de9cb80948d55ee81886eb0af418abfa61949757246094d21b71
User & Date: js on 2017-07-29 19:53:06
Other Links: manifest | tags
Context
2017-07-29
20:12
Fix compilation for Wii check-in: 0a13f77dc5 user: js tags: trunk
19:53
Add missing import to make GCC happy check-in: b740a5bba1 user: js tags: trunk
19:14
OFBlockTests: Disable test broken on Win32 + Clang check-in: 62c4233db1 user: js tags: trunk
Changes

Modified src/OFMutableURL.m from [60a5553f44] to [d83d33a394].

14
15
16
17
18
19
20

21
22
23
24
25
26
27
 * file.
 */

#include "config.h"

#import "OFMutableURL.h"
#import "OFURL+Private.h"


@implementation OFMutableURL
@dynamic scheme, host, port, user, password, path, parameters, query, fragment;

+ (instancetype)URL
{
	return [[[self alloc] init] autorelease];







>







14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 * file.
 */

#include "config.h"

#import "OFMutableURL.h"
#import "OFURL+Private.h"
#import "OFString.h"

@implementation OFMutableURL
@dynamic scheme, host, port, user, password, path, parameters, query, fragment;

+ (instancetype)URL
{
	return [[[self alloc] init] autorelease];