Added correct (I hope) typechecking for native scripting objects

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4821 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Luigi Ballabio 2003-05-22 13:01:44 +00:00
commit 418ed3416b
3 changed files with 7 additions and 4 deletions

View file

@ -263,6 +263,8 @@ REF_MAP(double, SCHEME_REALP, scheme_real_to_double,
%typemap (in) Scheme_Object * "$1=$input;";
%typemap (out) Scheme_Object * "$result=$1;";
%typecheck(SWIG_TYPECHECK_POINTER) Scheme_Object * "$1=1;";
/* ------------------------------------------------------------
* String & length
@ -340,4 +342,3 @@ REF_MAP(double, SCHEME_REALP, scheme_real_to_double,
}