Author: jasons
Date: Thu May 20 09:23:16 2004
New Revision: 20150

Modified:
   xml/xerces-p/trunk/typemaps.i
Log:
changed hard-coded TYPECHECK constant to logical constant in order to resolve order of 
operation bug that broke the resolution of XMLCh* methods over int methods

Modified: xml/xerces-p/trunk/typemaps.i
==============================================================================
--- xml/xerces-p/trunk/typemaps.i       (original)
+++ xml/xerces-p/trunk/typemaps.i       Thu May 20 09:23:16 2004
@@ -173,11 +173,13 @@
   $1 = SvOK($input) ? 1 : 0;
 }
 
-%typemap(typecheck, precedence=70)
+// %typemap(typecheck, precedence=70)
+%typecheck(SWIG_TYPECHECK_UNISTRING)
 XMLCh*, const XMLCh* 
 {
   $1 = SvPOK($input)||SvIOK($input)||SvNOK($input) ? 1 : 0;
 }
+
 
 //
 // Grammar*

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to