ObjFW  Check-in [94ed4fc6f0]

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: 94ed4fc6f0e4c259c78daee86cf35641345a973776aea3154838e1952e060baa
User & Date: js on 2023-10-15 12:55:21
Other Links: manifest | tags
Context
2023-10-15
14:53
macros.h: Add OF_DEPRECATED check-in: b84438dcfd user: js tags: trunk
12:55
Make GCC happy again check-in: 94ed4fc6f0 user: js tags: trunk
12:48
Use JSON5 for localizations check-in: b5d1f8fcb1 user: js tags: trunk
Changes

Modified src/OFZIPArchive.m from [76b549ca53] to [139c2dfeb6].

939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
	}

	return ret;
}

- (bool)lowlevelHasDataInReadBuffer
{
	return _decompressedStream.hasDataInReadBuffer;
}

- (int)fileDescriptorForReading
{
	return ((id <OFReadyForReadingObserving>)_decompressedStream)
	    .fileDescriptorForReading;
}







|







939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
	}

	return ret;
}

- (bool)lowlevelHasDataInReadBuffer
{
	return ((OFStream *)_decompressedStream).hasDataInReadBuffer;
}

- (int)fileDescriptorForReading
{
	return ((id <OFReadyForReadingObserving>)_decompressedStream)
	    .fileDescriptorForReading;
}