-
Notifications
You must be signed in to change notification settings - Fork 594
Closed
Description
The issue is mentioned in the #663, so extracting it to the separate one.
Break positioned outside of the brackets in the switch case, indented aligning to the end of the case line, not to the beginning of it.
In:
@implementation UCTestClass
- (void) test{
switch (test) {
case "longlonglonglong":{
i = 1;
}
break;
}
}
@end
Actual out:
@implementation UCTestClass
- (void)test
{
switch (test) {
case "longlonglonglong": {
i = 1;
}
break;
}
}
@end
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels