diff --git a/CHANGES.current b/CHANGES.current index ca6a09a79..517b82319 100644 --- a/CHANGES.current +++ b/CHANGES.current @@ -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] diff --git a/Examples/test-suite/pure_virtual.i b/Examples/test-suite/pure_virtual.i index 11562370e..aae0a436a 100644 --- a/Examples/test-suite/pure_virtual.i +++ b/Examples/test-suite/pure_virtual.i @@ -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 %{ diff --git a/Examples/test-suite/static_array_member.i b/Examples/test-suite/static_array_member.i index 868a99ddb..3bd8cf9f8 100644 --- a/Examples/test-suite/static_array_member.i +++ b/Examples/test-suite/static_array_member.i @@ -7,8 +7,6 @@ %inline %{ class RB { - static char *prberror[]; -public: static char *rberror[]; }; %}