remove vc++ noise
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8497 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
8629d7f513
commit
cf9272fbae
5 changed files with 31 additions and 0 deletions
|
|
@ -96,8 +96,14 @@ public:
|
|||
|
||||
void bar(F *) { }
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#pragma warning(disable: 4624) // : destructor could not be generated because a base class destructor is inaccessible
|
||||
#endif
|
||||
class FFF : public F {
|
||||
};
|
||||
#if defined(_MSC_VER)
|
||||
#pragma warning(default: 4624) // : destructor could not be generated because a base class destructor is inaccessible
|
||||
#endif
|
||||
|
||||
/* A class with a protected destructor */
|
||||
class G {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue