ObjFW  Diff

Differences From Artifact [dec1e593aa]:

To Artifact [913f851c54]:


278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
	}
}

#ifdef OF_HAVE_FILES
- (void)parseFile: (OFString *)path
{
	OFFile *file = [[OFFile alloc] initWithPath: path
					       mode: @"rb"];
	@try {
		[self parseStream: file];
	} @finally {
		[file release];
	}
}
#endif







|







278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
	}
}

#ifdef OF_HAVE_FILES
- (void)parseFile: (OFString *)path
{
	OFFile *file = [[OFFile alloc] initWithPath: path
					       mode: @"r"];
	@try {
		[self parseStream: file];
	} @finally {
		[file release];
	}
}
#endif