Skip to content
This repository has been archived by the owner on Jun 25, 2021. It is now read-only.

Commit

Permalink
Merge branch 'ARC'
Browse files Browse the repository at this point in the history
  • Loading branch information
epreston committed Oct 13, 2013
2 parents 17868e9 + 9841b49 commit 54ce784
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Example 1/Classes/Model/ObjCClass/ObjCClassWrapper.m
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ - (NSArray *) subclasses
Class* classes = NULL;
while (numClasses < newNumClasses) {
numClasses = newNumClasses;
classes = realloc(classes, sizeof(Class) * numClasses);
classes = (Class*)realloc(classes, sizeof(Class) * numClasses);
newNumClasses = objc_getClassList(classes, numClasses);
}

Expand Down
4 changes: 2 additions & 2 deletions PSTreeGraphView/PSBaseTreeGraphView.m
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ @interface PSBaseTreeGraphView ()
// Model
id <PSTreeGraphModelNode> modelRoot_;

// Delegate
id <PSTreeGraphDelegate> delegate_;
// Delegate
__weak id <PSTreeGraphDelegate> delegate_;

// Model Object -> SubtreeView Mapping
NSMutableDictionary *modelNodeToSubtreeViewMapTable_;
Expand Down

0 comments on commit 54ce784

Please sign in to comment.