fix fabrice sort problem, maybe

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7386 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2005-08-23 09:43:55 +00:00
commit 49c78502c1

View file

@ -115,7 +115,7 @@ String_cmp(DOH *so1, DOH *so2)
String * s2 = (String *) ObjData(so2);
register char *c1 = s1->str;
register char *c2 = s2->str;
#if 0
#if 1
/* this should be faster ? */
return strcmp(c1, c2);
#else