Issue 91063
Summary [feat] Clang format detect when using struct XYZ instead of XYZ (typedef)
Labels clang
Assignees
Reporter ilan-schemoul
    Hey,
It would be awesome to have an option (the name could be UseTypedefInsteafOfFullStructName) so when we have this
```c
struct abc{};;
typedef a;
int main() {
   struct abc b;
}
```
`struct abc b;` gets replaced by "a b;"

_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to