From 59d0c241085bbc6b82cc03edf133a90b65158cd1 Mon Sep 17 00:00:00 2001 From: Marcelo Matus Date: Thu, 22 Dec 2005 08:43:11 +0000 Subject: [PATCH] more cleanups git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8037 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- CHANGES.current | 4 ---- Examples/test-suite/pure_virtual.i | 6 ++++-- Examples/test-suite/static_array_member.i | 2 -- 3 files changed, 4 insertions(+), 8 deletions(-) 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[]; }; %}