2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-20 16:52:15 +00:00

Silence compiler by adding cosmetic virtual destructors.

[SVN r41549]
This commit is contained in:
Jürgen Hunold
2007-12-01 20:24:51 +00:00
parent ab0911cf53
commit 40e4940877
4 changed files with 4 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;
};