more cleanups

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8037 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2005-12-22 08:43:11 +00:00
commit 59d0c24108
3 changed files with 4 additions and 8 deletions

View file

@ -20,10 +20,6 @@ Version 1.3.28 (unreleased).
for specific classes, and always avoid using the global
-nodefault and -nodefaultdtor options.
- SWIG now also generates the implicit copy constructor,
and that can be also disabled using the corresponding
-nocopyctor option and/or %nocopyctor directive.
12/17/2005: mmatus
[Python]

View file

@ -9,8 +9,10 @@
%warnfilter(813,833,870) E; /* C#, Java, Php4 multiple inheritance */
%nodefault C;
%nodefault E;
%nodefaultctor C;
%nodefaultdtor C;
%nodefaultctor E;
%nodefaultdtor E;
%inline %{

View file

@ -7,8 +7,6 @@
%inline %{
class RB {
static char *prberror[];
public:
static char *rberror[];
};
%}