dbertoni 2004/02/06 10:01:50
Modified: c/src/xalanc/XSLT StylesheetExecutionContext.hpp
StylesheetExecutionContextDefault.cpp
StylesheetExecutionContextDefault.hpp
Log:
Fixed typedef problem.
Revision Changes Path
1.14 +4 -2
xml-xalan/c/src/xalanc/XSLT/StylesheetExecutionContext.hpp
Index: StylesheetExecutionContext.hpp
===================================================================
RCS file:
/home/cvs/xml-xalan/c/src/xalanc/XSLT/StylesheetExecutionContext.hpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- StylesheetExecutionContext.hpp 6 Feb 2004 17:27:05 -0000 1.13
+++ StylesheetExecutionContext.hpp 6 Feb 2004 18:01:49 -0000 1.14
@@ -148,7 +148,9 @@
public:
#if defined(XALAN_STRICT_ANSI_HEADERS)
- typedef std::size_t size_t;
+ typedef std::size_t tl_size_type;
+#else
+ typedef size_t tl_size_type;
#endif
#if defined(XALAN_NO_STD_NAMESPACE)
@@ -1565,7 +1567,7 @@
*
* @return number of listeners
*/
- virtual size_t
+ virtual tl_size_type
getTraceListeners() const = 0;
/**
1.18 +1 -1
xml-xalan/c/src/xalanc/XSLT/StylesheetExecutionContextDefault.cpp
Index: StylesheetExecutionContextDefault.cpp
===================================================================
RCS file:
/home/cvs/xml-xalan/c/src/xalanc/XSLT/StylesheetExecutionContextDefault.cpp,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- StylesheetExecutionContextDefault.cpp 6 Feb 2004 09:52:51 -0000
1.17
+++ StylesheetExecutionContextDefault.cpp 6 Feb 2004 18:01:50 -0000
1.18
@@ -2167,7 +2167,7 @@
-StylesheetExecutionContextDefault::size_t
+StylesheetExecutionContextDefault::tl_size_type
StylesheetExecutionContextDefault::getTraceListeners() const
{
assert(m_xsltProcessor != 0);
1.13 +1 -1
xml-xalan/c/src/xalanc/XSLT/StylesheetExecutionContextDefault.hpp
Index: StylesheetExecutionContextDefault.hpp
===================================================================
RCS file:
/home/cvs/xml-xalan/c/src/xalanc/XSLT/StylesheetExecutionContextDefault.hpp,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- StylesheetExecutionContextDefault.hpp 6 Feb 2004 09:52:51 -0000
1.12
+++ StylesheetExecutionContextDefault.hpp 6 Feb 2004 18:01:50 -0000
1.13
@@ -691,7 +691,7 @@
installXalanNumberFormatFactory(XalanNumberFormatFactory*
theFactory);
- virtual size_t
+ virtual tl_size_type
getTraceListeners() const;
virtual void
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]