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!
请先登录再写评论。
Hello!
Sorry for the delay in response.
It looks like CLion doesn't understand your code.
File | New Project
>C++ Executable
>Create
)?