peiyongz    2002/11/20 12:28:17

  Modified:    c/src/xercesc/util/MsgLoaders/ICU ICUMsgLoader.cpp
  Log:
  fix to warning C4018: '>' : signed/unsigned mismatch
  
  Revision  Changes    Path
  1.8       +4 -1      xml-xerces/c/src/xercesc/util/MsgLoaders/ICU/ICUMsgLoader.cpp
  
  Index: ICUMsgLoader.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/MsgLoaders/ICU/ICUMsgLoader.cpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ICUMsgLoader.cpp  12 Nov 2002 17:27:49 -0000      1.7
  +++ ICUMsgLoader.cpp  20 Nov 2002 20:28:17 -0000      1.8
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.8  2002/11/20 20:28:17  peiyongz
  + * fix to warning C4018: '>' : signed/unsigned mismatch
  + *
    * Revision 1.7  2002/11/12 17:27:49  tng
    * DOM Message: add new domain for DOM Messages.
    *
  @@ -225,7 +228,7 @@
           return false;
       }
   
  -    int retStrLen = strLen > maxChars ? maxChars : strLen;
  +    int retStrLen = strLen > (int32_t)maxChars ? maxChars : strLen;
   
       if (sizeof(UChar)==sizeof(XMLCh))
       {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to