peiyongz 2003/10/09 12:11:53 Modified: c/src/xercesc/internal XSerializeEngine.hpp Log: Fix to linkage error on Solaris Revision Changes Path 1.5 +7 -4 xml-xerces/c/src/xercesc/internal/XSerializeEngine.hpp Index: XSerializeEngine.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/XSerializeEngine.hpp,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- XSerializeEngine.hpp 7 Oct 2003 19:38:31 -0000 1.4 +++ XSerializeEngine.hpp 9 Oct 2003 19:11:53 -0000 1.5 @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.5 2003/10/09 19:11:53 peiyongz + * Fix to linkage error on Solaris + * * Revision 1.4 2003/10/07 19:38:31 peiyongz * API for Template_Class Object Serialization/Deserialization * @@ -373,7 +376,7 @@ * false : otherwise * ***/ - bool needToWriteTemplateObject(void* objectToWrite); + bool needToWriteTemplateObject(void* const templateObjectToWrite); /*** * @@ -386,7 +389,7 @@ * false : otherwise * ***/ - bool needToReadTemplateObject(void** objectToRead); + bool needToReadTemplateObject(void** templateObjectToRead); /*** * @@ -400,7 +403,7 @@ * Return: * ***/ - void registerTemplateObject(void* const objectToRegister); + void registerTemplateObject(void* const templateObjectToRegister); static const bool toReadBufferLen;
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]