Differences From Artifact [fe77741148]:
- File src/OFString+Cube.m — part of check-in [cc7ebd7f79] at 2025-03-26 21:47:31 on branch trunk — Run newer version of clang-format (user: js, size: 613) [annotate] [blame] [check-ins using]
To Artifact [fa8b89b835]:
- File
src/OFString+Cube.m
— part of check-in
[75e920ae30]
at
2025-03-29 14:25:43
on branch trunk
— Switch from clang-format to manual formatting
clang-format does too many weird things. (user: js, size: 615) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
12 13 14 15 16 17 18 | return 0; } @catch (OFOutOfRangeException *e) { conoutf(@"invalid value: %@", self); return 0; } } | | | | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | return 0; } @catch (OFOutOfRangeException *e) { conoutf(@"invalid value: %@", self); return 0; } } - (int)cube_intValueWithBase: (unsigned char)base { @try { return [self intValueWithBase: base]; } @catch (OFInvalidFormatException *e) { conoutf(@"invalid value: %@", self); return 0; } @catch (OFOutOfRangeException *e) { conoutf(@"invalid value: %@", self); return 0; } |
︙ | ︙ |