Issue 56069
Summary clang-format remove space between (){}
Labels new issue
Assignees
Reporter hutiwephy
    I would like to request for an option to remove the space between ```(){}``` of a function, if, while, switch, ...

ex: What I currently have
```
void main() {
     if(a == b) {
          printf("something!");
     }
     return 0;
}
```

ex: What I want to have
```
void main(){
     if(a == b){
          printf("something!");
     }
     return 0;
}
```

_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to