Added a bug fix from Tom Quarles, to fix a problem where The preprocessor will determine that there is no way to reach the end of the for loop because of a return statement imbedded as the last line
Added a bug fix from Tom Quarles, to fix a problem where The preprocessor will determine that there is no way to reach the end of the for loop because of a return statement imbedded as the last line of a for loop. The problem code is: for ( ... ) { if (..) { ...; next } .... return }
show more ...
|