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