1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00

Fix build with gcc41

This commit is contained in:
Tilman Keskinoz 2006-12-22 14:42:40 +00:00
parent 2177214f97
commit 47c5416552
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=180499
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,11 @@
--- include/pathan/PathanImplementation.hpp.orig Fri Dec 22 15:28:34 2006
+++ include/pathan/PathanImplementation.hpp Fri Dec 22 15:29:08 2006
@@ -184,7 +184,7 @@
* the feature to see if it requires this method.
* @since DOM Level 2
*/
- virtual XERCES_CPP_NAMESPACE_QUALIFIER DOMDocumentType *PathanImplementation::createDocumentType(const XMLCh *qualifiedName,const XMLCh * publicId, const XMLCh *systemId);
+ virtual XERCES_CPP_NAMESPACE_QUALIFIER DOMDocumentType *createDocumentType(const XMLCh *qualifiedName,const XMLCh * publicId, const XMLCh *systemId);
/**
* This method makes available a <code>DOMImplementation</code>'s

View File

@ -0,0 +1,11 @@
--- include/pathan/XPath2Utils.hpp.orig Fri Dec 22 15:25:39 2006
+++ include/pathan/XPath2Utils.hpp Fri Dec 22 15:26:03 2006
@@ -62,7 +62,7 @@
static std::vector<const XMLCh*> getVal(const XMLCh* values, XPath2MemoryManager* memMgr);
/* Determine whether or not an XMLCh* is contained within a vector of XMLCh's */
- static bool XPath2Utils::containsString(std::vector<const XMLCh*> values, const XMLCh* val);
+ static bool containsString(std::vector<const XMLCh*> values, const XMLCh* val);
/** Obtain index of node with respect to it's siblings of same name */
static int indexNode(const XERCES_CPP_NAMESPACE_QUALIFIER DOMNode *node);