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

C++ Compiler Warning

Started by
0 comments, last by WitchLord 9 years, 8 months ago

This is not a big deal, but I build my projects with Microsoft's VC++ compiler, and I set the warning level to 4. When I build AngelScript targeting the x64 platform I get the following compiler warning.

>source\as_builder.cpp(240): warning C4267: 'initializing' : conversion from 'size_t' to 'AngelScript::asUINT', possible loss of data

I would recommend an explicit cast here so that the warning does not appear.

asUINT numTempl = (asUINT)engine->templateInstanceTypes.GetLength();

Advertisement

This has been fixed. Thanks.

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