More style fixes
FossilOrigin-Name: c634a689e76e7c60fb8b685ea40cb9993a86f23474d1ead7159eb331e98f1110
This commit is contained in:
parent
d3dc40de33
commit
a838f496b1
39 changed files with 536 additions and 582 deletions
|
@ -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];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue