I'd like to remove space between template angles, for example:
void Function (list<list<int> >);
^
|
This space should be removed.
For this purpose I use sp_angle_shift = remove
, but is has no effect.
$ uncrustify -c uncrustify.cfg function.h --no-backup -l CPP
Input
void Function (const list<list<T> > data);
void Function (const list<list<T> > data)
{
}
Output: the same.
How to remove spaces between angles?