dbertoni 01/12/07 13:35:24
Modified: c/src/XPath NodeRefListBase.hpp
Log:
Fix for conformant compilers where size_t is in namespace std.
Revision Changes Path
1.13 +5 -1 xml-xalan/c/src/XPath/NodeRefListBase.hpp
Index: NodeRefListBase.hpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XPath/NodeRefListBase.hpp,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- NodeRefListBase.hpp 2001/09/26 22:15:40 1.12
+++ NodeRefListBase.hpp 2001/12/07 21:35:24 1.13
@@ -85,7 +85,11 @@
virtual
~NodeRefListBase();
- typedef size_t size_type;
+#if defined(XALAN_SIZE_T_IN_NAMESPACE_STD)
+ typedef std::size_t size_type;
+#else
+ typedef size_t size_type;
+#endif
/**
* Returns the <code>index</code>th item in the collection. If
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]