dbertoni 01/09/26 13:52:50
Modified: c/src/TestXSLT process.cpp
Log:
32/64-bit fixes.
Revision Changes Path
1.77 +2 -2 xml-xalan/c/src/TestXSLT/process.cpp
Index: process.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/TestXSLT/process.cpp,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- process.cpp 2001/09/14 20:03:59 1.76
+++ process.cpp 2001/09/26 20:52:49 1.77
@@ -1327,7 +1327,7 @@
if (theInstanceCount > 0)
{
cout << "There are "
- << XalanNode::getInstanceCount()
+ << theInstanceCount
<< " XalanNode instances still alive!"
<< endl
<< endl
@@ -1341,7 +1341,7 @@
XalanNode::getLiveInstances(&*theNodes.begin());
- for(unsigned int i = 0; i < theInstanceCount; ++i)
+ for(size_t i = 0; i < theInstanceCount; ++i)
{
const XalanNode* const theInstance =
theNodes[i];
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]