Skip to content

Commit

Permalink
Mark exception parameter as unused
Browse files Browse the repository at this point in the history
  • Loading branch information
steipete committed May 10, 2014
1 parent f048a2e commit 957282c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Aspects.m
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ static IMP aspect_getMsgForwardIMP(NSObject *self, SEL selector) {
if (valueSize == 1 || valueSize == 2 || valueSize == 4 || valueSize == 8) {
methodReturnsStructValue = NO;
}
} @catch (NSException *e) {}
} @catch (__unused NSException *e) {}
}
if (methodReturnsStructValue) {
msgForwardIMP = (IMP)_objc_msgForward_stret;
Expand Down

0 comments on commit 957282c

Please sign in to comment.