Overview
| Comment: | OFNumber: Remove useless OF_UNAVAILABLE
These methods no longer exist. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
27002f2efef50246c81796fa02d43f1e |
| User & Date: | js on 2021-04-17 00:57:59 |
| Other Links: | manifest | tags |
Context
|
2021-04-25
| ||
| 11:29 | Change the naming convention (check-in: 2b74ff13b0 user: js tags: trunk) | |
|
2021-04-17
| ||
| 00:59 | Merge trunk into branch "new-naming-convention" (check-in: b57126a21e user: js tags: new-naming-convention) | |
| 00:57 | OFNumber: Remove useless OF_UNAVAILABLE (check-in: 27002f2efe user: js tags: trunk) | |
|
2021-04-13
| ||
| 21:43 | Simplify OFValue (check-in: e41940c022 user: js tags: trunk) | |
Changes
Modified src/OFNumber.h from [1390ca955e] to [4b9e5cee54].
| ︙ | ︙ | |||
239 240 241 242 243 244 245 | */ + (instancetype)numberWithDouble: (double)value; - (instancetype)init OF_UNAVAILABLE; #ifdef OF_HAVE_UNAVAILABLE - (instancetype)initWithBytes: (const void *)bytes objCType: (const char *)objCType OF_UNAVAILABLE; | < < < < < < | 239 240 241 242 243 244 245 246 247 248 249 250 251 252 | */ + (instancetype)numberWithDouble: (double)value; - (instancetype)init OF_UNAVAILABLE; #ifdef OF_HAVE_UNAVAILABLE - (instancetype)initWithBytes: (const void *)bytes objCType: (const char *)objCType OF_UNAVAILABLE; #endif /** * @brief Initializes an already allocated OFNumber with the specified `bool`. * * @param value The `bool` value which the OFNumber should contain * @return An initialized OFNumber |
| ︙ | ︙ |