Another Code Cleanup bug Permanently deleted user Created February 25, 2009 14:57 /*** this is a comment* in two lines*/ becomes // ** this is a comment* in two lines
for (int i = 0; ; i += 1)
{
// some code here
}
becomes
for (int i = 0; i += 1)
{
// some code here
}
Hardly the same thing, ouch.