missing throws typemaps added
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6133 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
d2c06e97dc
commit
a5c694a978
4 changed files with 35 additions and 0 deletions
|
|
@ -44,4 +44,13 @@ namespace std {
|
|||
Tcl_SetStringObj($result,(char*)$1->c_str(),$1->length());
|
||||
}
|
||||
|
||||
%typemap(throws) string {
|
||||
Tcl_SetObjResult(interp, Tcl_NewStringObj((char*) $1.c_str(), -1));
|
||||
SWIG_fail;
|
||||
}
|
||||
|
||||
%typemap(throws) const string & {
|
||||
Tcl_SetObjResult(interp, Tcl_NewStringObj((char*) $1.c_str(), -1));
|
||||
SWIG_fail;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue