Basically what I want is:
void func1()
{
cout << a;
}
void func2()
{
count << a;
}
Is there a .clang-format
option to do this? If not, can it be done through some script with clang?
Basically what I want is:
void func1()
{
cout << a;
}
void func2()
{
count << a;
}
Is there a .clang-format
option to do this? If not, can it be done through some script with clang?