test-suite warning fixes

This commit is contained in:
William S Fulton 2016-02-21 21:34:01 +00:00
commit 1a26710106
8 changed files with 14 additions and 2 deletions

View file

@ -23,6 +23,9 @@ struct Base {
virtual int method(int v) {
return v;
}
#if !defined(SWIG)
virtual ~Base() {}
#endif
};
struct Derived : Base {
double actualval;