Visual Studio warning fixes
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7538 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
21c689c610
commit
da2a914365
5 changed files with 12 additions and 9 deletions
|
|
@ -622,16 +622,19 @@
|
|||
}
|
||||
|
||||
%typemap(throws) SWIGTYPE {
|
||||
(void)$1;
|
||||
Tcl_SetObjResult(interp, Tcl_NewStringObj((char*) "$1_type", -1));
|
||||
SWIG_fail;
|
||||
}
|
||||
|
||||
%typemap(throws) SWIGTYPE, SWIGTYPE &, SWIGTYPE *, SWIGTYPE [ANY] {
|
||||
(void)$1;
|
||||
Tcl_SetObjResult(interp, Tcl_NewStringObj((char*) "$1_type", -1));
|
||||
SWIG_fail;
|
||||
}
|
||||
|
||||
%typemap(throws) enum SWIGTYPE {
|
||||
(void)$1;
|
||||
Tcl_SetObjResult(interp, Tcl_NewStringObj((char*) "$1_type", -1));
|
||||
SWIG_fail;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue