2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-23 05:42:30 +00:00

Add cosmetic virtual detructors to silence compile warnings.

[SVN r41650]
This commit is contained in:
Jürgen Hunold
2007-12-03 18:51:26 +00:00
parent ff44521920
commit 38cc1a0c15
6 changed files with 6 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ using namespace boost::python;
class Abstract
{
public:
virtual ~Abstract() {}; // silence compiler warningsa
virtual std::string f() =0;
};