Overview
| Comment: | OFSystemInfo: Prevent instantiation |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
9f372df30f9ba44ce51543c3d14e8bd6 |
| User & Date: | js on 2017-10-19 20:21:44 |
| Other Links: | manifest | tags |
Context
|
2017-10-19
| ||
| 20:54 | Update buildsys (check-in: 6814c06c55 user: js tags: trunk) | |
| 20:21 | OFSystemInfo: Prevent instantiation (check-in: 9f372df30f user: js tags: trunk) | |
|
2017-10-17
| ||
| 21:06 | OF{Pair,Triple}: Add designated initializer (check-in: 262b3c5801 user: js tags: trunk) | |
Changes
Modified src/OFSystemInfo.h from [e8b6bc242b] to [ead9e7cf66].
| ︙ | ︙ | |||
181 182 183 184 185 186 187 188 189 190 | * * @note This method is only available on PowerPC and PowerPC 64. * * @return Whether the CPU and OS support AltiVec */ + (bool)supportsAltiVec; #endif @end OF_ASSUME_NONNULL_END | > > > | 181 182 183 184 185 186 187 188 189 190 191 192 193 | * * @note This method is only available on PowerPC and PowerPC 64. * * @return Whether the CPU and OS support AltiVec */ + (bool)supportsAltiVec; #endif + (instancetype)alloc OF_UNAVAILABLE; - (instancetype)init OF_UNAVAILABLE; @end OF_ASSUME_NONNULL_END |
Modified src/OFSystemInfo.m from [5a19cbf413] to [1dbbe7eb69].
| ︙ | ︙ | |||
392 393 394 395 396 397 398 399 | return false; # endif return false; } #endif @end | > > > > > | 392 393 394 395 396 397 398 399 400 401 402 403 404 |
return false;
# endif
return false;
}
#endif
- (instancetype)init
{
OF_INVALID_INIT_METHOD
}
@end
|