ObjFW  Check-in [dbaa66d92f]

Overview
Comment:Make GCC happy again
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: dbaa66d92f09089fc7a3945c5330054f8ff1feabd70892ffa07d5b6dbdfd6021
User & Date: js on 2022-10-04 22:38:49
Other Links: manifest | tags
Context
2022-10-06
20:25
Merge all archive URI handlers into one check-in: 87db2302ef user: js tags: trunk
2022-10-04
22:38
Make GCC happy again check-in: dbaa66d92f user: js tags: trunk
22:30
OFMutableLHAArchiveEntry: Fix typo check-in: d2e8afc7d2 user: js tags: trunk
Changes

Modified src/OFGZIPURIHandler.m from [96c40ab197] to [623f512984].

12
13
14
15
16
17
18

19
20
21
22
23
24
25
26
27
 * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
 * file.
 */

#include "config.h"

#import "OFGZIPURIHandler.h"

#import "OFURI.h"
#import "OFGZIPStream.h"

#import "OFInvalidArgumentException.h"

@implementation OFGZIPURIHandler
- (OFStream *)openItemAtURI: (OFURI *)URI mode: (OFString *)mode
{
	void *pool = objc_autoreleasePoolPush();







>
|
|







12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
 * file.
 */

#include "config.h"

#import "OFGZIPURIHandler.h"
#import "OFGZIPStream.h"
#import "OFStream.h"
#import "OFURI.h"

#import "OFInvalidArgumentException.h"

@implementation OFGZIPURIHandler
- (OFStream *)openItemAtURI: (OFURI *)URI mode: (OFString *)mode
{
	void *pool = objc_autoreleasePoolPush();

Modified src/OFZIPURIHandler.m from [ed7da6bb04] to [42924d2309].

12
13
14
15
16
17
18

19
20
21
22
23
24
25
 * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
 * file.
 */

#include "config.h"

#import "OFZIPURIHandler.h"

#import "OFURI.h"
#import "OFZIPArchive.h"

#import "OFInvalidArgumentException.h"

@implementation OFZIPURIHandler
- (OFStream *)openItemAtURI: (OFURI *)URI mode: (OFString *)mode







>







12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
 * file.
 */

#include "config.h"

#import "OFZIPURIHandler.h"
#import "OFStream.h"
#import "OFURI.h"
#import "OFZIPArchive.h"

#import "OFInvalidArgumentException.h"

@implementation OFZIPURIHandler
- (OFStream *)openItemAtURI: (OFURI *)URI mode: (OFString *)mode