ObjFW  Check-in [0aecf5784f]

Overview
Comment:Add missing import to make GCC happy
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 0.90
Files: files | file ages | folders
SHA3-256: 0aecf5784ff05bf03f9805fe0e10e97d8cf7df10d9c82329c69ca557578e7aa5
User & Date: js on 2017-07-29 19:52:48
Other Links: branch diff | manifest | tags
Context
2017-07-29
20:12
Fix compilation for Wii check-in: 76efe22e8f user: js tags: 0.90
19:52
Add missing import to make GCC happy check-in: 0aecf5784f user: js tags: 0.90
19:16
OFBlockTests: Disable test broken on Win32 + Clang check-in: beb8314c85 user: js tags: 0.90
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];