move the nodefault option into _defs.i too.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37107 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
c72b1ad70a
commit
9c605285c8
@ -874,7 +874,6 @@ swig_cmd = SWIG
|
|||||||
swig_force = force
|
swig_force = force
|
||||||
swig_args = ['-c++',
|
swig_args = ['-c++',
|
||||||
'-Wall',
|
'-Wall',
|
||||||
'-nodefault',
|
|
||||||
'-python',
|
'-python',
|
||||||
'-new_repr',
|
'-new_repr',
|
||||||
'-modern',
|
'-modern',
|
||||||
|
@ -19,6 +19,17 @@
|
|||||||
// Turn on kwargs by default
|
// Turn on kwargs by default
|
||||||
%feature("kwargs", "1");
|
%feature("kwargs", "1");
|
||||||
|
|
||||||
|
// Don't generate separate wrappers for each default args combination
|
||||||
|
%feature("compactdefaultargs");
|
||||||
|
|
||||||
|
// Don't generate default ctors or dtors if the C++ doesn't have them
|
||||||
|
%feature("nodefault");
|
||||||
|
|
||||||
|
// This is the SWIG 1.3.28 way to do the above...
|
||||||
|
// // Don't generate default ctors or dtors if the C++ doesn't have them
|
||||||
|
// %feature("nodefaultctor");
|
||||||
|
// %feature("nodefaultdtor");
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
// Tell SWIG to wrap all the wrappers with our thread protection by default
|
// Tell SWIG to wrap all the wrappers with our thread protection by default
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user