Overview
Comment: | OFStream: Add missing newline in documentation |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
2d5166ab47d0d2047fdac2408f5c61df |
User & Date: | js on 2024-04-14 11:51:08 |
Other Links: | manifest | tags |
Context
2024-04-14
| ||
11:52 | src/Makefile: Include ${LIBBASES_M} check-in: 3e6d413c7b user: js tags: trunk | |
11:51 | OFStream: Add missing newline in documentation check-in: 2d5166ab47 user: js tags: trunk | |
11:50 | README.md: Fix indentation check-in: d3e8aa2065 user: js tags: trunk | |
Changes
Modified src/OFStream.h from [0ff1cfaec5] to [bfdbdea6e5].
︙ | ︙ | |||
1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 | * @brief Returns whether the lowlevel has data in the read buffer. * * @warning Do not call this directly! * * @note Override this method in case your stream can buffer data itself, such * as when implementing @ref OFTLSStream. If not overridden, it always * returns false. * @return Whether the lowlevel has data in the read buffer */ - (bool)lowlevelHasDataInReadBuffer; @end OF_ASSUME_NONNULL_END | > | 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 | * @brief Returns whether the lowlevel has data in the read buffer. * * @warning Do not call this directly! * * @note Override this method in case your stream can buffer data itself, such * as when implementing @ref OFTLSStream. If not overridden, it always * returns false. * * @return Whether the lowlevel has data in the read buffer */ - (bool)lowlevelHasDataInReadBuffer; @end OF_ASSUME_NONNULL_END |