Skip to content

Commit

Permalink
Fixed compiler warning "Semicolon before method body is ignored"
Browse files Browse the repository at this point in the history
Fixed Xcode compiler warning "Semicolon before method body is ignored"
in Reachability.m. description method had a semicolon after the method
definition.
  • Loading branch information
stevekohls committed Aug 28, 2013
1 parent 1a6dafe commit 3ec1e46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Reachability.m
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ -(void)reachabilityChanged:(SCNetworkReachabilityFlags)flags

#pragma mark - Debug Description

- (NSString *) description;
- (NSString *) description
{
NSString *description = [NSString stringWithFormat:@"<%@: %#x>",
NSStringFromClass([self class]), (unsigned int) self];
Expand Down

0 comments on commit 3ec1e46

Please sign in to comment.