summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-08-18 02:12:27 +0000
committerjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-08-18 02:12:27 +0000
commit9d1858314fc904d6a1d1e93018623fc94176cdde (patch)
tree7a64fd7a8726969dbcec4b540561b13989668e61
parent2b458c7f6acde83f06f79b3de860cf298474f693 (diff)
downloadATCD-9d1858314fc904d6a1d1e93018623fc94176cdde.tar.gz
ChangeLogTag: Tue Aug 17 19:07:11 2004 J.T. Conklin <jtc@acorntoolworks.com>
-rw-r--r--ACEXML/ChangeLog13
-rw-r--r--ACEXML/common/NamespaceSupport.cpp2
2 files changed, 14 insertions, 1 deletions
diff --git a/ACEXML/ChangeLog b/ACEXML/ChangeLog
index 51e110a9178..d1685d6b5a1 100644
--- a/ACEXML/ChangeLog
+++ b/ACEXML/ChangeLog
@@ -1,3 +1,12 @@
+Tue Aug 17 19:07:11 2004 J.T. Conklin <jtc@acorntoolworks.com>
+
+ * common/NamespaceSupport.cpp:
+
+ Changed ACE_NEW_RETURN to use "NS_Node_T" instead of "struct
+ NS_Node_T" --- the latter triggers a gcc 3.3 parser bug when
+ used with the "new (std::nothrow)" version of ACE_NEW_RETURN.
+ Fortunately, the "struct" is unnecessary.
+
Sat Feb 21 23:51:25 2004 . <.@isis.vanderbilt.edu>
* common/Exception.h:
@@ -774,3 +783,7 @@ Wed Oct 23 17:27:14 2002 Krishnakumar B <kitty@cs.wustl.edu>
simpler. Removed try_grow_cdata() as it is no longer needed.
Handle the case when the parser was accepting invalid character
references().
+
+Local Variables:
+add-log-time-format: current-time-string
+End:
diff --git a/ACEXML/common/NamespaceSupport.cpp b/ACEXML/common/NamespaceSupport.cpp
index d89a02d8c51..5e049ca9cd4 100644
--- a/ACEXML/common/NamespaceSupport.cpp
+++ b/ACEXML/common/NamespaceSupport.cpp
@@ -32,7 +32,7 @@ int
ACEXML_Namespace_Context_Stack::push (ACEXML_NS_CONTEXT *nsc)
{
struct NS_Node_T *temp = 0;
- ACE_NEW_RETURN (temp, struct NS_Node_T, -1);
+ ACE_NEW_RETURN (temp, NS_Node_T, -1);
temp->item_ = nsc;
temp->next_ = this->head_;