I know this is very hard to do, and that I should avoid that, but I have my reasons for this. I want to modify the order of some field declarations in compilation time, for example :
class A {
char c;
int i;
}
must turn to :
class A {
int i;
char c;
}
if I chose to swap the order of i
and c
,
I want to know how to change the location
of a field declaration having its tree
Anyone know how can I do this ?? thanks !
I use the g++ 4.9.2 version of plugins