Issue 109559
Summary Clang-format incorrectly puts first argument in new line in Objective-C
Labels clang-format
Assignees
Reporter bruhderek
    Using GNU style, code looks like this currently:
```objc
- (bool)renderTextHover:(const char *)
                   text:(int)x
 :(int)y
                       :(float)size
 :(unsigned int)color0
                       :(unsigned int)color1
                       :(NSPoint)mousePosition
```

I want it to look like this:
```objc
- (bool)renderTextHover:(const char *)text
                       :(int)x
 :(int)y
                       :(float)size
 :(unsigned int)color0
                       :(unsigned int)color1
 :(NSPoint)mousePosition
```
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to