summaryrefslogtreecommitdiff
path: root/ACEXML/common/NamespaceSupport.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACEXML/common/NamespaceSupport.h')
-rw-r--r--ACEXML/common/NamespaceSupport.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/ACEXML/common/NamespaceSupport.h b/ACEXML/common/NamespaceSupport.h
index d81f9303d70..4299b57ddcf 100644
--- a/ACEXML/common/NamespaceSupport.h
+++ b/ACEXML/common/NamespaceSupport.h
@@ -76,7 +76,13 @@ public:
private:
/// Internal stack structure to hold namespace context.
- ACE_Unbounded_Stack<ACEXML_NS_CONTEXT*> stack_;
+ struct NS_Node_T {
+ ACEXML_NS_CONTEXT *item_;
+ struct NS_Node_T *next_;
+ };
+
+ /// Anchor point for head of stack.
+ NS_Node_T *head_;
};
/**