Formatting Issues: Spaces in < > and Line Breaks
Hi,
I just started using CLion for C++. Here’s an example of my code:
namespace Test {
static vector<vector<vector<int>>> *abc;
}
After reformatting, it turns into:
namespace Test {
static vector <vector<vector < int>>> *
abc;
}
I need:
- No spaces before/after
<
and>
. - No line break for
abc
.
How can I fix this?
Thanks!
Please sign in to leave a comment.