I am trying to use Uncrustify but all configurations are breaking my code when working in xcode
std::vector<int> a;
becomes
std: : vector<int> a;
Is there a way to prevent this so that the :: is held together
I am trying to use Uncrustify but all configurations are breaking my code when working in xcode
std::vector<int> a;
becomes
std: : vector<int> a;
Is there a way to prevent this so that the :: is held together
THe reason for this error is that the language was set wrong in the Uncrustify arguments.
Changing -l OC to -l CPP fixed the problem