Skip to content

Commit

Permalink
Merge pull request erikdoe#46 from ikashkuta/unnecessary-semicolons
Browse files Browse the repository at this point in the history
Unnecessary semicolons
  • Loading branch information
erikdoe committed Sep 9, 2013
2 parents c7ed21c + 9148415 commit 619450c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Source/OCMock/NSInvocation+OCMAdditions.m
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ - (NSString *)unsignedLongLongDescriptionAtIndex:(int)anInt
return [NSString stringWithFormat:@"%qu", longLongValue];
}

- (NSString *)doubleDescriptionAtIndex:(int)anInt;
- (NSString *)doubleDescriptionAtIndex:(int)anInt
{
double doubleValue;

Expand All @@ -299,7 +299,7 @@ - (NSString *)floatDescriptionAtIndex:(int)anInt
return [NSString stringWithFormat:@"%f", floatValue];
}

- (NSString *)structDescriptionAtIndex:(int)anInt;
- (NSString *)structDescriptionAtIndex:(int)anInt
{
void *buffer;

Expand Down
2 changes: 1 addition & 1 deletion Source/OCMock/OCMConstraint.m
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ - (BOOL)evaluate:(id)value

@implementation OCMBlockConstraint

- (id)initWithConstraintBlock:(BOOL (^)(id))aBlock;
- (id)initWithConstraintBlock:(BOOL (^)(id))aBlock
{
self = [super init];
block = [aBlock copy];
Expand Down

0 comments on commit 619450c

Please sign in to comment.