Another Code Cleanup bug

/**
* this is a comment
* in two lines
*/


becomes

// *

* this is a comment
* in two lines



0
1 comment
Avatar
Permanently deleted user

for (int i = 0; ; i += 1)
{
// some code here
}

becomes


for (int i = 0; i += 1)
{
// some code here
}


Hardly the same thing, ouch.


0

Please sign in to leave a comment.