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

Warnings in Xcode: asIFilter

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

Hi,

I'm always annoyed by warnings in Xcode, just commenting that I get:

'asIFilter' has virtual functions but a non-virtual destructor

This creating warnings in quiet a few other places (as_property.h for example). Would the following patch be acceptable:

struct asIFilter

{

virtual bool operator()(const void*) const = 0;

virtual ~asIFilter() {};

};

Best regards,

Jim

Advertisement

I've included this in revision 1990.

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