sp_angle_word
Add or remove space between >
and a word as in List<byte> m;
or template <typename T> static ...
.
Possible values are ignore, add, remove and force.
Examples
Add
Before:
vector<int>v = {7, 5, 16, 8};
shared_ptr<int>isp=make_shared<int>();
After
vector<int> v = {7, 5, 16, 8};
shared_ptr<int> isp=make_shared<int>();
Remove
Before
vector<int> v = {7, 5, 16, 8};
shared_ptr<int> isp =make_shared<int>();
After
vector<int>v = {7, 5, 16, 8};
shared_ptr<int>isp =make_shared<int>();
See also
- sp_angle_paren - Add or remove space between
>
and(
as found innew List<byte>(foo);
.