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

Can cast object method to uint

Started by
1 comment, last by WitchLord 9 years ago

It is possible to cast an object method to a uint like this:


void test()
{
    string s;
    uint i = uint( s.length );
    
    string s2 = i;
    
    Print( s2 );
}

The result here is 0.

Print is a function that takes a const string& in, it prints to std::cout.

In our game, this caused a crash. A method taking ?& in directly took a variable of the form uint( s.length ).

Advertisement

Thanks. That should definitely not be possible.

I'll investigate and have it fixed a.s.a.p.

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 2181.

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