🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Support for multiple increment statements in for loop

Started by
1 comment, last by WitchLord 9 years ago

I've added the ability to have multiple increment statements in for loops


for( int i=0,j=10; i<10; i++,j-- )
{

}

I've included the patches, only a few lines, all tests pass.

Advertisement

Nice, I'll verify the changes and if everything is OK merge it into the SVN.

Thanks,

Andreas

AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game

I've included this in revision 2179.

Thanks,

Andreas

AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game

This topic is closed to new replies.

Advertisement