[Plib-cvs] plib/src/util ul.cxx,1.29,1.30
Brought to you by:
sjbaker
From: Steve B. <sj...@us...> - 2002-10-26 19:00:59
|
Update of /cvsroot/plib/plib/src/util In directory usw-pr-cvs1:/tmp/cvs-serv19109/plib/src/util Modified Files: ul.cxx Log Message: Relaxed some class restrictions where ssgRoot was required to allow a mere ssgBranch to stand in for it. Cleaned up ulStrEqual a little. Index: ul.cxx =================================================================== RCS file: /cvsroot/plib/plib/src/util/ul.cxx,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- ul.cxx 2 Sep 2002 06:05:49 -0000 1.29 +++ ul.cxx 26 Oct 2002 19:00:56 -0000 1.30 @@ -436,13 +436,13 @@ continue ; if ( c1 >= 'a' && c1 <= 'z' ) - c1 = c1 - ('a'-'A') ; + c1 -= ('a'-'A') ; if ( c2 >= 'a' && c2 <= 'z' ) - c2 = c2 - ('a'-'A') ; + c2 -= ('a'-'A') ; if ( c1 != c2 ) - return FALSE ; + return FALSE ; } return TRUE ; |