dbertoni 00/06/26 18:07:38
Modified: c/src/ICUBridge ICUXalanNumberFormatProxy.cpp
Log:
Fixed signed/unsigned mismatch.
Revision Changes Path
1.3 +1 -1 xml-xalan/c/src/ICUBridge/ICUXalanNumberFormatProxy.cpp
Index: ICUXalanNumberFormatProxy.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/ICUBridge/ICUXalanNumberFormatProxy.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ICUXalanNumberFormatProxy.cpp 2000/06/05 00:50:35 1.2
+++ ICUXalanNumberFormatProxy.cpp 2000/06/27 01:07:37 1.3
@@ -102,7 +102,7 @@
theBuffer.reserve(theLength);
- for (unsigned int i = 0; i < theLength; ++i)
+ for (int32_t i = 0; i < theLength; ++i)
{
theBuffer.push_back(theString[i]);
}