generate implicit copyctor, add -nocopyctor, and clarify the -nodefault, -nodefaultctor, -nodefautldtor options
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8030 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
be9d5343a6
commit
f023a22575
8 changed files with 261 additions and 61 deletions
|
|
@ -234,10 +234,10 @@ public:
|
|||
} else if (strcmp(argv[i],"-apply") == 0) {
|
||||
apply = 1;
|
||||
Swig_mark_arg(i);
|
||||
} else if (strcmp(argv[i],"-new_repr") == 0) {
|
||||
} else if ((strcmp(argv[i],"-new_repr") == 0) || (strcmp(argv[i],"-newrepr") == 0)) {
|
||||
new_repr = 1;
|
||||
Swig_mark_arg(i);
|
||||
} else if (strcmp(argv[i],"-old_repr") == 0) {
|
||||
} else if ((strcmp(argv[i],"-old_repr") == 0) || (strcmp(argv[i],"-oldrepr") == 0)) {
|
||||
new_repr = 0;
|
||||
Swig_mark_arg(i);
|
||||
} else if (strcmp(argv[i],"-classptr") == 0) {
|
||||
|
|
@ -325,7 +325,7 @@ public:
|
|||
} else if (strcmp(argv[i],"-noh") == 0) {
|
||||
no_header_file = 1;
|
||||
Swig_mark_arg(i);
|
||||
} else if (strcmp(argv[i],"-new_vwm") == 0) {
|
||||
} else if ((strcmp(argv[i],"-new_vwm") == 0) || (strcmp(argv[i],"-newvwm") == 0)) {
|
||||
/* Turn on new value wrapper mpde */
|
||||
Swig_value_wrapper_mode(1);
|
||||
no_header_file = 1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue