dbertoni 2004/08/13 22:51:37
Modified: c/src/xalanc/PlatformSupport ReusableArenaBlock.hpp
Log:
Fixed use of typedef and signed/unsigned mismatch.
Revision Changes Path
1.9 +1 -1
xml-xalan/c/src/xalanc/PlatformSupport/ReusableArenaBlock.hpp
Index: ReusableArenaBlock.hpp
===================================================================
RCS file:
/home/cvs/xml-xalan/c/src/xalanc/PlatformSupport/ReusableArenaBlock.hpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ReusableArenaBlock.hpp 7 Aug 2004 19:58:31 -0000 1.8
+++ ReusableArenaBlock.hpp 14 Aug 2004 05:51:37 -0000 1.9
@@ -62,7 +62,7 @@
bool
isValidFor( size_type rightBorder ) const
{
- return ( ( verificationStamp == VALID_OBJECT_STAMP ) &&
+ return ( ( verificationStamp ==
size_type(VALID_OBJECT_STAMP)) &&
( next <= rightBorder ) ) ? true : false ;
}
};
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]