Skip to content

Commit

Permalink
Add simple init
Browse files Browse the repository at this point in the history
  • Loading branch information
gcasa committed Sep 30, 2024
1 parent ce8347c commit 37ad8d2
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions XCode/XCBuildConfiguration.m
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,15 @@ - (instancetype) initWithName: (NSString *)theName
buildSettings: settings];
}

/*
- (instancetype) init
{
NSMutableDictionary *settings = [NSMutableDictionary dictionaryWithObject: @"macosx"
forKey: @"SDKROOT"];
return [self initWithName: @"Debug"
buildSettings: settings];
self = [super init];
if (self != nil)
{
// nothing now...
}
return self;
}
*/

- (NSString *) description
{
Expand Down

0 comments on commit 37ad8d2

Please sign in to comment.