dbertoni 02/05/07 18:39:57
Modified: c/src/XSLT StylesheetExecutionContextDefault.cpp
Log:
Fixed cast problem with older compilers.
Revision Changes Path
1.90 +1 -1
xml-xalan/c/src/XSLT/StylesheetExecutionContextDefault.cpp
Index: StylesheetExecutionContextDefault.cpp
===================================================================
RCS file:
/home/cvs/xml-xalan/c/src/XSLT/StylesheetExecutionContextDefault.cpp,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- StylesheetExecutionContextDefault.cpp 19 Apr 2002 05:33:42 -0000
1.89
+++ StylesheetExecutionContextDefault.cpp 8 May 2002 01:39:57 -0000
1.90
@@ -1162,7 +1162,7 @@
{
#if defined(XALAN_NO_COVARIANT_RETURN_TYPE)
#if defined(XALAN_OLD_STYLE_CASTS)
- m_documentAllocator.destroy((const
XalanSourceTreeDocument*)theDocumentFragment->getOwnerDocument());
+
m_documentAllocator.destroy((XalanSourceTreeDocument*)theDocumentFragment->getOwnerDocument());
#else
m_documentAllocator.destroy(static_cast<XalanSourceTreeDocument*>(theDocumentFragment->getOwnerDocument()));
#endif
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]