Overview
| Comment: | Minor Doxygen fix |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | new-naming-convention |
| Files: | files | file ages | folders |
| SHA3-256: |
9f1d51c236c27c6a13486c26b1b9f1e7 |
| User & Date: | js on 2021-04-17 02:27:48 |
| Other Links: | branch diff | manifest | tags |
Context
|
2021-04-17
| ||
| 02:29 | Rename all types in OFData.h (check-in: 88ed17ad48 user: js tags: new-naming-convention) | |
| 02:27 | Minor Doxygen fix (check-in: 9f1d51c236 user: js tags: new-naming-convention) | |
| 02:25 | Rename remaining enums in OFString.h (check-in: 169692a120 user: js tags: new-naming-convention) | |
Changes
Modified src/OFObject.h from [e386160582] to [972f5ad44c].
| ︙ | ︙ | |||
50 51 52 53 54 55 56 | OF_ASSUME_NONNULL_BEGIN /** @file */ /** * @brief A result of a comparison. */ | | | 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
OF_ASSUME_NONNULL_BEGIN
/** @file */
/**
* @brief A result of a comparison.
*/
typedef enum OFComparisonResult {
/** The left object is smaller than the right */
OFOrderedAscending = -1,
/** Both objects are equal */
OFOrderedSame = 0,
/** The left object is bigger than the right */
OFOrderedDescending = 1
} OFComparisonResult;
|
| ︙ | ︙ | |||
73 74 75 76 77 78 79 | */ typedef OFComparisonResult (^OFComparator)(id _Nonnull left, id _Nonnull right); #endif /** * @brief An enum for storing endianess. */ | | | 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
*/
typedef OFComparisonResult (^OFComparator)(id _Nonnull left, id _Nonnull right);
#endif
/**
* @brief An enum for storing endianess.
*/
typedef enum OFByteOrder {
/** Most significant byte first (big endian) */
OFByteOrderBigEndian,
/** Least significant byte first (little endian) */
OFByteOrderLittleEndian,
/** Native byte order of the system */
#ifdef OF_BIG_ENDIAN
OFByteOrderNative = OFByteOrderBigEndian
|
| ︙ | ︙ |