summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2010-05-11 16:17:32 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2010-05-11 16:17:32 +0000
commit9bd4431762796ded93e572706f230f1740bc2a3c (patch)
tree7155d58c6c944ec55c632f4071cb69023ac67066
parent2831b2dd49171c20d86451ced9392ca6520125df (diff)
downloadATCD-alt_mapping.tar.gz
ChangeLogTag: Tue May 11 16:16:18 UTC 2010 Jeff Parsons <j.parsons@vanderbilt.edu>alt_mapping
-rw-r--r--modules/TAO/ChangeLog6
-rw-r--r--modules/TAO/TAO_IDL/be/be_visitor_argument/arglist.cpp4
2 files changed, 9 insertions, 1 deletions
diff --git a/modules/TAO/ChangeLog b/modules/TAO/ChangeLog
index b5c7865c135..c4d59225353 100644
--- a/modules/TAO/ChangeLog
+++ b/modules/TAO/ChangeLog
@@ -1,3 +1,9 @@
+Tue May 11 16:16:18 UTC 2010 Jeff Parsons <j.parsons@vanderbilt.edu>
+
+ * TAO_IDL/be/be_visitor_argument/arglist.cpp:
+
+ Added missing global double colon in generation of enum argument.
+
Fri May 7 19:44:31 UTC 2010 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/be/be_visitor_operation/operation.cpp:
diff --git a/modules/TAO/TAO_IDL/be/be_visitor_argument/arglist.cpp b/modules/TAO/TAO_IDL/be/be_visitor_argument/arglist.cpp
index ad51b6816de..614b949eea6 100644
--- a/modules/TAO/TAO_IDL/be/be_visitor_argument/arglist.cpp
+++ b/modules/TAO/TAO_IDL/be/be_visitor_argument/arglist.cpp
@@ -98,7 +98,9 @@ int be_visitor_args_arglist::visit_array (be_array *node)
int be_visitor_args_arglist::visit_enum (be_enum *node)
{
- TAO_OutStream *os = this->ctx_->stream (); // get output stream
+ TAO_OutStream *os = this->ctx_->stream ();
+
+ *os << "::";
switch (this->direction ())
{