Differences From Artifact [da5458033a]:
- File src/OFSHA384Or512Hash.h — part of check-in [0509d7a844] at 2019-01-03 19:13:03 on branch trunk — Update copyright (user: js, size: 1159) [annotate] [blame] [check-ins using]
To Artifact [835b1d3d02]:
- File
src/OFSHA384Or512Hash.h
— part of check-in
[496695d778]
at
2019-09-29 19:35:38
on branch trunk
— Either restrict subclassing or reserve ivar space
This allows ABI stability with the fragile ABI. (user: js, size: 1180) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 45 |
union of_sha384_or_512_hash_buffer {
uint8_t bytes[128];
uint64_t words[80];
} buffer;
size_t bufferLength;
} *_iVars;
bool _calculated;
}
@end
OF_ASSUME_NONNULL_END
| > | 35 36 37 38 39 40 41 42 43 44 45 46 |
union of_sha384_or_512_hash_buffer {
uint8_t bytes[128];
uint64_t words[80];
} buffer;
size_t bufferLength;
} *_iVars;
bool _calculated;
OF_RESERVE_IVARS(4)
}
@end
OF_ASSUME_NONNULL_END
|