[Plib-cvs] plib/src/ssg ssgParser.cxx,1.26,1.27
Brought to you by:
sjbaker
From: Wolfram K. <wol...@us...> - 2004-05-04 12:38:13
|
Update of /cvsroot/plib/plib/src/ssg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11130 Modified Files: ssgParser.cxx Log Message: Changes by "Simon" to make it compile on Macintosh. See plib devel mailing list, mail of 3.5.2004. Index: ssgParser.cxx =================================================================== RCS file: /cvsroot/plib/plib/src/ssg/ssgParser.cxx,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- ssgParser.cxx 2 Sep 2002 06:05:48 -0000 1.26 +++ ssgParser.cxx 4 May 2004 12:37:33 -0000 1.27 @@ -276,7 +276,11 @@ if (string == NULL ) return NULL; else +#ifdef UL_BB + return strchr( (char*)string, c ); +#else return strchr( string, c ); +#endif } |