No.
for(int x=0;;)
will become
int x; for(x=0;;)
As far as I know, that should not break things.
/ Marcus Agehall (Scanian)
Previous text:
2004-05-05 10:29: Subject: precompile.pike
That means that code today that uses for instance
{ .... for (int i=...;;) ... for (float i=...;;) ... }
will break?
/ Mirar