add missing const ptr case
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7534 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
2f774be1b9
commit
1a8b5611e5
2 changed files with 7 additions and 0 deletions
|
|
@ -295,10 +295,15 @@
|
|||
$input = SWIG_NewPointerObj(SWIG_static_cast(SWIG_static_cast(&$1_name, $1_ltype), void*), $descriptor, 0);
|
||||
}
|
||||
|
||||
/* the const cases */
|
||||
%typemap(directorin) SWIGTYPE const& {
|
||||
$input = SWIG_NewPointerObj(SWIG_static_cast(SWIG_const_cast(&$1_name, $1_ltype), void*), $descriptor, 0);
|
||||
}
|
||||
|
||||
%typemap(directorin) SWIGTYPE const* {
|
||||
$input = SWIG_NewPointerObj(SWIG_static_cast(SWIG_const_cast($1_name, $1_ltype), void*), $descriptor, 0);
|
||||
}
|
||||
|
||||
|
||||
/* directorout */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue