|
From: Andre B. <and...@gm...> - 2002-12-23 19:14:39
|
Hi Baptiste,
I was just trying out the "RenameTempVar" addin - nice job !
nothing is as good as trying the code at the user level ;-)
However it fails with this example:
{
int test;
{
int a = test;
if (test == 10) test = 10;
}
}
Rename "test" into "ot" will result in:
{
int ot;
{
int a otst;
ifotst == 10otst = 10;
}
}
Is this code not yet supported ?
-- Andre
|