More style fixes

FossilOrigin-Name: c634a689e76e7c60fb8b685ea40cb9993a86f23474d1ead7159eb331e98f1110
This commit is contained in:
Jonathan Schleifer 2025-03-29 17:13:40 +00:00
parent d3dc40de33
commit a838f496b1
39 changed files with 536 additions and 582 deletions

View file

@ -4,26 +4,26 @@
@implementation Variable
+ (instancetype)variableWithName: (OFString *)name
min: (int)min
max: (int)max
storage: (int *)storage
function: (void (*__cdecl)())function
persisted: (bool)persisted
min: (int)min
max: (int)max
storage: (int *)storage
function: (void (*__cdecl)())function
persisted: (bool)persisted
{
return [[self alloc] initWithName: name
min: min
max: max
storage: storage
function: function
persisted: persisted];
min: min
max: max
storage: storage
function: function
persisted: persisted];
}
- (instancetype)initWithName: (OFString *)name
min: (int)min
max: (int)max
storage: (int *)storage
function: (void (*__cdecl)())function
persisted: (bool)persisted
min: (int)min
max: (int)max
storage: (int *)storage
function: (void (*__cdecl)())function
persisted: (bool)persisted
{
self = [super initWithName: name];