summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-07-04 00:19:32 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-07-04 00:19:32 +0000
commit1f89c9d58ef1b6555f2cc77bb0a35d9038e8254a (patch)
tree10bcb738c8c6525b54cc2339c7fe4507f08268b7
parent75ccef1ef4077da30eaf75feea4363acc95f1cb3 (diff)
downloadATCD-1f89c9d58ef1b6555f2cc77bb0a35d9038e8254a.tar.gz
ChangeLogTag: Wed Jul 3 19:17:52 2002 Jeff Parsons <parsons@cs.wustl.edu>
-rw-r--r--TAO/ChangeLog8
-rw-r--r--TAO/TAO_IDL/fe/fe_tmplinst.cpp4
2 files changed, 10 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 3a6bd69afdc..f32408412dc 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Wed Jul 3 19:17:52 2002 Jeff Parsons <parsons@cs.wustl.edu>
+
+ * TAO_IDL/fe/fe_tmplinst.cpp:
+
+ Fixed typos in template instantiation list. Thanks to
+ Marvin Wolfthal <maw@weichi.com> for pointing them
+ out.
+
Wed Jul 3 18:16:38 2002 Jeff Parsons <parsons@cs.wustl.edu>
* tao/ObjectReferenceTemplateC.cpp:
diff --git a/TAO/TAO_IDL/fe/fe_tmplinst.cpp b/TAO/TAO_IDL/fe/fe_tmplinst.cpp
index 9192f7eda55..f8de493f8fd 100644
--- a/TAO/TAO_IDL/fe/fe_tmplinst.cpp
+++ b/TAO/TAO_IDL/fe/fe_tmplinst.cpp
@@ -63,7 +63,7 @@ template class ACE_Unbounded_Queue_Iterator<AST_Component::port_description>;
template class ACE_Node<Identifier *>;
template class ACE_Unbounded_Queue<Identifier *>;
-template class ACE_UnboundedQueue_Iterator<Identifier *>;
+template class ACE_Unbounded_Queue_Iterator<Identifier *>;
template class ACE_Unbounded_Stack<char *>;
template class ACE_Unbounded_Stack_Iterator<char *>;
@@ -116,7 +116,7 @@ template class ACE_Unbounded_Stack_Iterator<char *>;
#pragma instantiate ACE_Node<Identifier *>;
#pragma instantiate ACE_Unbounded_Queue<Identifier *>;
-#pragma instantiate ACE_UnboundedQueue_Iterator<Identifier *>;
+#pragma instantiate ACE_Unbounded_Queue_Iterator<Identifier *>;
#pragma instantiate ACE_Unbounded_Stack<char *>
#pragma instantiate ACE_Unbounded_Stack_Iterator<char *>