Index: libs/python/test/pointer_vector.cpp =================================================================== --- libs/python/test/pointer_vector.cpp (revision 41576) +++ libs/python/test/pointer_vector.cpp (working copy) @@ -10,7 +10,6 @@ class Abstract { public: - virtual ~Abstract() {}; // silence compiler warningsa virtual std::string f() =0; }; Index: libs/python/test/implicit.cpp =================================================================== --- libs/python/test/implicit.cpp (revision 41576) +++ libs/python/test/implicit.cpp (working copy) @@ -24,7 +24,6 @@ struct bar {}; struct foo { - virtual ~foo() {}; // silence compiler warnings virtual void f() = 0; operator bar() const { return bar(); } }; Index: libs/python/test/bienstman1.cpp =================================================================== --- libs/python/test/bienstman1.cpp (revision 41576) +++ libs/python/test/bienstman1.cpp (working copy) @@ -11,7 +11,7 @@ struct V { - virtual ~V() {}; // silence compiler warningsa + virtual void f() = 0; const A* inside() {return &a;} Index: libs/python/test/bienstman3.cpp =================================================================== --- libs/python/test/bienstman3.cpp (revision 41576) +++ libs/python/test/bienstman3.cpp (working copy) @@ -7,7 +7,6 @@ struct V { - virtual ~V() {}; // silence compiler warningsa virtual void f() = 0; }; Index: libs/python/test/wrapper_held_type.cpp =================================================================== --- libs/python/test/wrapper_held_type.cpp (revision 41576) +++ libs/python/test/wrapper_held_type.cpp (working copy) @@ -13,7 +13,6 @@ struct data { - virtual ~data() {}; // silence compiler warnings virtual int id() const { return 42; Index: libs/python/test/shared_ptr.cpp =================================================================== --- libs/python/test/shared_ptr.cpp (revision 41576) +++ libs/python/test/shared_ptr.cpp (working copy) @@ -129,7 +129,6 @@ // regressions from Nicodemus struct A { - virtual ~A() {}; // silence compiler warnings virtual int f() = 0; static int call_f(shared_ptr& a) { return a->f(); } };