generate implicit copyctor, add -nocopyctor, and clarify the -nodefault, -nodefaultctor, -nodefautldtor options

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8031 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2005-12-22 06:32:49 +00:00
commit 8ffd60bec7
7 changed files with 121 additions and 120 deletions

View file

@ -90,6 +90,7 @@ CPP_TEST_CASES += \
const_const_2 \
constant_pointers \
constover \
constructor_copy \
constructor_exception \
constructor_explicit \
constructor_value \

View file

@ -5,7 +5,7 @@
%module cplusplus_throw
%nodefault;
%nodefaultctor;
%inline %{

View file

@ -5,9 +5,10 @@
%module static_array_member
%nodefault;
%inline %{
class RB {
static char *prberror[];
public:
static char *rberror[];
};
%}