Skip to content
Snippets Groups Projects
Commit aab5d4e5 authored by Tinny Ng's avatar Tinny Ng
Browse files

[Bug 13139] Building Promblems on HP-UX.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@174265 13f79535-47bb-0310-9956-ffa450edef68
parent ecd58ff8
No related branches found
No related tags found
No related merge requests found
......@@ -305,6 +305,16 @@ inline void SchemaInfo::setProcessed(const bool aValue) {
// ---------------------------------------------------------------------------
// SchemaInfo: Access methods
// ---------------------------------------------------------------------------
inline void SchemaInfo::addImportedNS(const int namespaceURI) {
if (!fImportedNSList) {
fImportedNSList = new ValueVectorOf<int>(4);
}
if (!fImportedNSList->containsElement(namespaceURI))
fImportedNSList->addElement(namespaceURI);
}
inline void SchemaInfo::addSchemaInfo(SchemaInfo* const toAdd,
const ListType aListType) {
......@@ -395,16 +405,6 @@ inline void SchemaInfo::addFailedRedefine(const DOMElement* const anElem) {
fFailedRedefineList->addElement(anElem);
}
inline void SchemaInfo::addImportedNS(const int namespaceURI) {
if (!fImportedNSList) {
fImportedNSList = new ValueVectorOf<int>(4);
}
if (!fImportedNSList->containsElement(namespaceURI))
fImportedNSList->addElement(namespaceURI);
}
inline bool SchemaInfo::isImportingNS(const int namespaceURI) {
if (!fImportedNSList)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment