Differences From Artifact [dde130d271]:
- File tests/OFNumberTests.m — part of check-in [c7f0229795] at 2020-01-02 01:51:34 on branch trunk — Update copyright (user: js, size: 1187) [annotate] [blame] [check-ins using] [more...]
To Artifact [ccb8cb8682]:
- File
tests/OFNumberTests.m
— part of check-in
[25c985fec1]
at
2020-08-25 00:11:24
on branch trunk
— OFNumber: Remove (u)int{8,16,32,64} methods
Since C guarantees minimum sizes for char, short, int, long and long
long, these can be used instead. (user: js, size: 1189) [annotate] [blame] [check-ins using] [more...]
| ︙ | |||
23 24 25 26 27 28 29 | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | - - + + - + |
@implementation TestsAppDelegate (OFNumberTests)
- (void)numberTests
{
void *pool = objc_autoreleasePoolPush();
OFNumber *num;
|