I found an empty for statement in an existing bit of code and I\'m wondering what it does and is it \"safe\". It just feels wrong.
for(;;) { //some if sta
It's the same as while (true) { /**/ } ... infinite loop until break or return or similar occurs.
while (true) { /**/ }
break
return
All it really "does" is look ugly IMO ;)