Skip to content

Commit 901b8e8

Browse files
committed
Fix warning with -Wmisleading-indentation.
Top of tree clang supports `-Wmisleading-indentation` as a warning. It gets flagged in one place in OCMock due to a mix of tabs and spaces. This fixes it by replacing one tab with spaces.
1 parent 9b0e314 commit 901b8e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/OCMock/OCPartialMockObject.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ - (void)forwardInvocationForRealObject:(NSInvocation *)anInvocation
237237
if(mock == nil)
238238
[NSException raise:NSInternalInconsistencyException format:@"No partial mock for object %p", self];
239239

240-
if([mock handleInvocation:anInvocation] == NO)
240+
if([mock handleInvocation:anInvocation] == NO)
241241
{
242242
[anInvocation setSelector:OCMAliasForOriginalSelector([anInvocation selector])];
243243
[anInvocation invoke];

0 commit comments

Comments
 (0)