🎉 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!

Namespace bug

Started by
1 comment, last by WitchLord 9 years, 11 months ago

AngelScript 2.29.0.

How to reproduce:


namespace n1
{
	class c1
	{
	}
}

void main()
{
	int c1 = 1;
	if(c1 < 2) // Error here
		c1 = 3;
}

INFO : Compiling void main().
ERROR : Expected '('.
ERROR : Instead found '<'.
Advertisement

Thanks. I'll have this fixed.

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 fixed this in revision 1979.

Regards,

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