[Igarden-commit] CommonSource/Utilities RGString.h,1.11,1.11.2.1
Status: Beta
Brought to you by:
jlbedell
|
From: Jeffrey B. <jlb...@us...> - 2006-11-15 04:00:25
|
Update of /cvsroot/igarden/CommonSource/Utilities In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv6738 Modified Files: Tag: Release_branch_v1 RGString.h Log Message: Add PurchaseReport Index: RGString.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/Utilities/RGString.h,v retrieving revision 1.11 retrieving revision 1.11.2.1 diff -C2 -d -r1.11 -r1.11.2.1 *** RGString.h 17 May 2006 00:03:55 -0000 1.11 --- RGString.h 15 Nov 2006 04:00:23 -0000 1.11.2.1 *************** *** 99,102 **** --- 99,104 ---- bool operator<(String s) { return (bool) (CIwcscmp(_sptr,s._sptr) < 0); } + bool operator<(const String s) const + { return (bool) (CIwcscmp(_sptr,s._sptr) < 0); } bool operator<=(String s) { return (bool) (!(*this > s)); } |