I am getting an error that tells me
error: declaration of 'virtual FXHost::~FXHost()' throws different exceptions
error: than previous declaration 'virtual FXHost::~FXHost() throw ()'
I am not sure how to begin solving this, I have never encountered this before.
in my .h I have:
public:
virtual ~FXHost() throw();
in my .cpp I have:
FXHost::~FXHost()
{
gHost = NULL;
}
Pointers appreciated.