Skip to content

Commit 90352f7

Browse files
committed
Fix Archive/Object version
1 parent aa9a92c commit 90352f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

XCode/PBXContainer.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ - (instancetype) init
3535

3636
if (self != nil)
3737
{
38-
_archiveVersion = @"1";
38+
ASSIGNCOPY(_archiveVersion, @"1");
3939
_classes = [[NSMutableDictionary alloc] init];
40-
_objectVersion = @"56";
40+
ASSIGNCOPY(_objectVersion, @"56");
4141
_objects = [[NSMutableDictionary alloc] init];
4242
_rootObject = nil;
4343
_filename = nil;

0 commit comments

Comments
 (0)