After function parameter closing brace, there is problem about indent. Follow
clion generates code after typing function parameter closing brace below as follow.
```
int function(int a,
int b,
int c)
{ //
}
```
I can not fix it. actually I want this
```
int function(int a,
int b,
int c)
{
}
```
there is my code style.
(Upload id: 2021_08_13_KmLwd68fgNGtnXdt (file: code_style.clang-format)
please help me.
Please sign in to leave a comment.