|
Fixed the problem with VS: Conflict.
Problem was a line like
var = 1, 2;
It is the same as writing
var = 1;
2;
Which doesn't make a lot of sense (you can delete the line with the "2;") but the optimizer had problems with it. |
Last edited by Admins; 10-25-2006 at 06:44 PM..
|