Differences From Artifact [36dcd5aa96]:
- File src/ResolverResult.m — part of check-in [eac9e3d948] at 2025-03-20 20:59:25 on branch trunk — Convert several files to pure Objective-C (user: js, size: 365) [annotate] [blame] [check-ins using]
- File src/ResolverResult.mm — part of check-in [89fbd7a152] at 2025-03-20 13:21:56 on branch trunk — Make more use of convenience methods (user: js, size: 365) [annotate] [blame] [check-ins using]
To Artifact [2be4a1c685]:
- File
src/ResolverResult.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: 371) [annotate] [blame] [check-ins using]
1 2 3 | #import "ResolverResult.h" @implementation ResolverResult | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #import "ResolverResult.h" @implementation ResolverResult + (instancetype)resultWithQuery: (OFString *)query address: (ENetAddress)address { return [[self alloc] initWithQuery: query address: address]; } - (instancetype)initWithQuery: (OFString *)query address: (ENetAddress)address { self = [super init]; _query = query; _address = address; return self; |
︙ | ︙ |