summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/oc/indent_single_newline.m
blob: 27e79e8a6134b90debe5df71f542baec6879c71e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

- (BOOL)isSomethingTrue:(BOOL) something{
    
    if (something){
	//Yes it's true

        return YES;
    }
    else {
        //No it's false
        
        return NO;
    }
    
}