ObjFW  Check-in [4d317d9ea7]

Overview
Comment:Remove spurious OF_UNAVAILABLE in @implementation
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 4d317d9ea729e3d60578615c325cc3ec5ebad02cfb4c648623bf1f68472e9b3c
User & Date: js on 2022-06-06 09:04:47
Other Links: manifest | tags
Context
2022-06-06
09:46
utils/ofhttp: Work around GCC bug check-in: 834e43651c user: js tags: trunk
09:04
Remove spurious OF_UNAVAILABLE in @implementation check-in: 4d317d9ea7 user: js tags: trunk
07:06
Always implement dummy for OF_UNAVAILABLE methods check-in: e53c0160a8 user: js tags: trunk
Changes

Modified src/OFDNSResponse.m from [815c0760a5] to [6e61ece6f0].

52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
		[self release];
		@throw e;
	}

	return self;
}

- (instancetype)init OF_UNAVAILABLE
{
	OF_INVALID_INIT_METHOD
}

- (void)dealloc
{
	[_domainName release];







|







52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
		[self release];
		@throw e;
	}

	return self;
}

- (instancetype)init
{
	OF_INVALID_INIT_METHOD
}

- (void)dealloc
{
	[_domainName release];