I am getting the following error when I try to compile some code from a Third-party SDK.
*Description Resource Path Location Type deleting object of
In this scenario you need to add virtual destructor to your class rather than removing compilation flag from here.
eg. for class Myclass this error is coming then add
Myclass
virtual ~Myclass(){}
Try this soultion, it will work fine.