Skip to content

Commit

Permalink
[ASTwoDimensionalArrayUtils] Fix extern C function definition to fix …
Browse files Browse the repository at this point in the history
…compiler issue. (#229)

In some build environments, this causes an error. It seems to be a change since 2.2.
  • Loading branch information
appleguy committed May 3, 2017
1 parent a4ddc07 commit 98a8c38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Private/ASTwoDimensionalArrayUtils.m
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ void ASDeleteElementsInTwoDimensionalArrayAtIndexPaths(NSMutableArray *mutableAr
}
}

NSArray *ASIndexPathsForTwoDimensionalArray(NSArray <NSArray *>* twoDimensionalArray)
NSArray<NSIndexPath *> *ASIndexPathsForTwoDimensionalArray(NSArray <NSArray *>* twoDimensionalArray)
{
NSMutableArray *result = [NSMutableArray array];
NSInteger section = 0;
Expand Down

0 comments on commit 98a8c38

Please sign in to comment.