Differences From Artifact [19135ee4c2]:
- File
src/MapModelInfo.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: 691) [annotate] [blame] [check-ins using]
To Artifact [bd54b60804]:
- File src/MapModelInfo.m — part of check-in [c634a689e7] at 2025-03-29 17:13:40 on branch trunk — More style fixes (user: js, size: 565) [annotate] [blame] [check-ins using]
1 2 3 4 | #import "MapModelInfo.h" @implementation MapModelInfo + (instancetype)infoWithRad: (int)rad | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | #import "MapModelInfo.h" @implementation MapModelInfo + (instancetype)infoWithRad: (int)rad h: (int)h zoff: (int)zoff snap: (int)snap name: (OFString *)name { return [[self alloc] initWithRad: rad h: h zoff: zoff snap: snap name: name]; } - (instancetype)initWithRad: (int)rad h: (int)h zoff: (int)zoff snap: (int)snap name: (OFString *)name { self = [super init]; _rad = rad; _h = h; _zoff = zoff; _snap = snap; |
︙ | ︙ |