From: Christian P. <cp...@us...> - 2005-05-07 13:27:20
|
Update of /cvsroot/pclasses/pclasses2/src/Unicode In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17478/src/Unicode Modified Files: ustring.cpp Log Message: - Fixed wrong declaration of Unicode::umemchr(). Index: ustring.cpp =================================================================== RCS file: /cvsroot/pclasses/pclasses2/src/Unicode/ustring.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- ustring.cpp 6 May 2005 15:32:11 -0000 1.3 +++ ustring.cpp 7 May 2005 13:27:09 -0000 1.4 @@ -50,7 +50,7 @@ return n; } -const uchar_t* umemchr(const uchar_t* s, size_t n, uchar_t a) +const uchar_t* umemchr(const uchar_t* s, uchar_t a, size_t n) { while(n-- > 0) { |